blob: d5be00757b1266af0d06663800032751b042b5f1 (
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
83
|
-- File: HLRBRep_BiPnt2D.cdl
-- Created: Fri Aug 21 17:10:30 1992
-- Author: Christophe MARION
-- <cma@sdsun1>
---Copyright: Matra Datavision 1992
class BiPnt2D from HLRBRep
---Purpose: Contains the colors of a shape.
uses
Boolean from Standard,
Real from Standard,
Pnt2d from gp,
Shape from TopoDS
is
Create
returns BiPnt2D from HLRBRep;
Create(x1,y1,x2,y2 : Real from Standard;
S : Shape from TopoDS;
reg1,regn,outl,intl : Boolean from Standard)
returns BiPnt2D from HLRBRep;
P1(me) returns Pnt2d from gp
---C++: inline
---C++: return const &
is static;
P2(me) returns Pnt2d from gp
---C++: inline
---C++: return const &
is static;
Shape(me) returns Shape from TopoDS
---C++: inline
---C++: return const &
is static;
Shape(me : in out; S : Shape from TopoDS)
---C++: inline
is static;
Rg1Line(me) returns Boolean from Standard
---C++: inline
is static;
Rg1Line(me : in out; B : Boolean from Standard)
---C++: inline
is static;
RgNLine(me) returns Boolean from Standard
---C++: inline
is static;
RgNLine(me : in out; B : Boolean from Standard)
---C++: inline
is static;
OutLine(me) returns Boolean from Standard
---C++: inline
is static;
OutLine(me : in out; B : Boolean from Standard)
---C++: inline
is static;
IntLine(me) returns Boolean from Standard
---C++: inline
is static;
IntLine(me : in out; B : Boolean from Standard)
---C++: inline
is static;
fields
myP1 : Pnt2d from gp;
myP2 : Pnt2d from gp;
myShape : Shape from TopoDS;
myFlags : Boolean from Standard;
end BiPnt2D;
|