blob: 45791bec60205e7edb4e656ad12008004dd4f592 (
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: TFace1.cdl
-- Created: Wed May 27 15:20:30 1992
-- Author: Remi LEQUETTE
-- <rle@sdsun2>
---Copyright: Matra Datavision 1992
class TFace1 from PBRep inherits TFace1 from PTopoDS
---Purpose: The TFace1 from PBRep is based on the TFace1 from
-- TopoDS. The TFace1 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 TFace1 from PBRep;
---Purpose: Creates an empty TFace1.
---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 TFace1;
|