blob: 597d5218a59324368d56215bce90dd8a6f294e76 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
-- File: TFace.cdl
-- Created: Wed May 27 15:20:30 1992
-- Author: Remi LEQUETTE
-- <rle@sdsun2>
---Copyright: Matra Datavision 1992
class TFace from PBRep inherits TFace from PTopoDS
---Purpose: The Tface from PBRep is based on the TFace from
-- TopoDS. The TFace contains :
--
-- * A surface, a tolerance, a location
--
-- * A NaturalRestriction flag, when this flag is
-- True the boundary of the face is known to be the
-- parametric space (Umin, UMax, VMin, VMax).
uses
Surface from PGeom,
Triangulation from PPoly,
Location from PTopLoc
is
Create returns mutable TFace from PBRep;
---Purpose: Creates an empty TFace.
---Level: Internal
Surface(me) returns Surface from PGeom
is static;
---Level: Internal
Triangulation(me) returns any Triangulation from PPoly
is static;
---Level: Internal
Location(me) returns Location from PTopLoc
is static;
---Level: Internal
Tolerance(me) returns Real
is static;
---Level: Internal
Surface(me : mutable; S : Surface from PGeom)
is static;
---Level: Internal
Triangulation(me : mutable; T : Triangulation from PPoly)
is static;
---Level: Internal
Location(me : mutable; L : Location from PTopLoc)
is static;
---Level: Internal
Tolerance(me : mutable; T : Real)
is static;
---Level: Internal
NaturalRestriction(me) returns Boolean
is static;
---Level: Internal
NaturalRestriction(me : mutable; N : Boolean)
is static;
---Level: Internal
fields
mySurface : Surface from PGeom;
myTriangulation : Triangulation from PPoly;
myLocation : Location from PTopLoc;
myTolerance : Real;
myNaturalRestriction : Boolean;
end TFace;
|