blob: a824762799e07e89fbeb0b29050fe5c2d5c7af51 (
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
|
-- File: BRepFill_TrimEdgeTool.cdl
-- Created: Mon Apr 24 16:15:45 1995
-- Author: Bruno DUMORTIER
-- <dub@fuegox>
---Copyright: Matra Datavision 1995
private class TrimEdgeTool from BRepFill
---Purpose:
uses
Bisec from Bisector,
Edge from TopoDS,
Pnt2d from gp,
Curve from Geom2d,
Geometry from Geom2d,
SequenceOfPnt from TColgp,
Curve from Geom2dAdaptor
is
Create
returns TrimEdgeTool from BRepFill;
Create( Bisec : Bisec from Bisector;
S1, S2 : Geometry from Geom2d;
Offset : Real from Standard)
returns TrimEdgeTool from BRepFill;
IntersectWith( me : in out;
Edge1 , Edge2 : Edge from TopoDS;
Params : in out SequenceOfPnt from TColgp)
is static;
AddOrConfuse ( me ;
Start : Boolean from Standard;
Edge1 , Edge2 : Edge from TopoDS;
Params : in out SequenceOfPnt from TColgp)
is static;
IsInside( me; P : Pnt2d from gp)
returns Boolean from Standard
is static;
fields
isPoint1 : Boolean from Standard;
isPoint2 : Boolean from Standard;
myP1 : Pnt2d from gp;
myP2 : Pnt2d from gp;
myC1 : Curve from Geom2d;
myC2 : Curve from Geom2d;
myOffset : Real from Standard;
myBisec : Bisec from Bisector;
myBis : Curve from Geom2dAdaptor;
end TrimEdgeTool;
|