blob: e7f2922f9e06416db7f8e4e15f92c49ef5744a2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
-- File: P3D_Prs.cdl
-- Created: Tue Jan 31 14:19:42 1995
-- Author: Mister rmi
-- <rmi@pernox>
--Modified by rob 11-mar-98 : Implement virtual methods from Graphic3d_Structure
-- to optimize HLR Display...
---Copyright: Matra Datavision 1995
class Prs from PrsMgr inherits Presentation from Prs3d
uses
Array2OfReal from TColStd,
StructureManager from Graphic3d,
Structure from Graphic3d,
DataStructureManager from Graphic3d,
TypeOfPresentation3d from PrsMgr,
Presentation3dPointer from PrsMgr
is
Create(aStructureManager : StructureManager from Graphic3d;
aPresentation : Presentation3dPointer from PrsMgr;
aTypeOfPresentation3d : TypeOfPresentation3d from PrsMgr)
returns mutable Prs from PrsMgr;
Compute(me : mutable; aProjector: DataStructureManager from Graphic3d)
returns Structure from Graphic3d
is redefined static;
Compute ( me : mutable;
aProjector: DataStructureManager from Graphic3d;
AMatrix : Array2OfReal from TColStd )
returns Structure from Graphic3d is
redefined static;
---Purpose: the "degenerated" Structure is displayed with
-- a transformation defined by <AMatrix>
-- which is not a Pure Translation.
-- We have to take in account this Transformation
-- in the computation of hidden line removal...
-- returns a filled Graphic Structure.
Compute(me : mutable;
aProjector : DataStructureManager from Graphic3d;
ComputedStruct : in out Structure from Graphic3d)
is redefined static;
---Purpose: No need to return a structure, just to fill
-- <ComputedStruct> ....
Compute ( me : mutable;
aProjector: DataStructureManager from Graphic3d;
AMatrix : Array2OfReal from TColStd ;
aStructure: in out Structure from Graphic3d )
is redefined static;
---Purpose: No Need to return a Structure, just to
-- Fill <aStructure>. The Trsf has to be taken in account
-- in the computation (Rotation Part....)
fields
myPresentation3d: Presentation3dPointer from PrsMgr;
end Prs from PrsMgr;
|