blob: de86499a76497195a0ef90f15a3386bad4c3a15b (
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
|
-- File: BRep_PolygonOnSurface.cdl
-- Created: Tue Mar 14 18:30:24 1995
-- Author: Laurent PAINNOT
-- <lpa@metrox>
---Copyright: Matra Datavision 1995
class PolygonOnSurface from BRep inherits CurveRepresentation from BRep
---Purpose: Representation of a 2D polygon in the parametric
-- space of a surface.
uses
Polygon2D from Poly,
Surface from Geom,
CurveRepresentation from BRep,
Location from TopLoc
raises DomainError from Standard
is
Create(P: Polygon2D from Poly;
S: Surface from Geom;
L: Location from TopLoc)
returns mutable PolygonOnSurface from BRep;
IsPolygonOnSurface(me) returns Boolean
---Purpose: A 2D polygon representation in the parametric
-- space of a surface.
is redefined;
IsPolygonOnSurface(me; S: Surface from Geom; L: Location from TopLoc)
returns Boolean
---Purpose: A 2D polygon representation in the parametric
-- space of a surface.
is redefined;
Surface(me) returns any Surface from Geom
---C++: return const&
is redefined;
Polygon(me) returns any Polygon2D from Poly
---C++: return const &
is redefined;
Polygon(me: mutable; P: Polygon2D from Poly)
is redefined;
Copy(me) returns mutable CurveRepresentation from BRep
---Purpose: Return a copy of this representation.
is redefined;
fields
myPolygon2D: Polygon2D from Poly;
mySurface : Surface from Geom;
end PolygonOnSurface;
|