0024784: Move documentation in CDL files to proper location
[occt.git] / src / BRepFill / BRepFill_TrimEdgeTool.cdl
1 -- Created on: 1995-04-24
2 -- Created by: Bruno DUMORTIER
3 -- Copyright (c) 1995-1999 Matra Datavision
4 -- Copyright (c) 1999-2014 OPEN CASCADE SAS
5 --
6 -- This file is part of Open CASCADE Technology software library.
7 --
8 -- This library is free software; you can redistribute it and/or modify it under
9 -- the terms of the GNU Lesser General Public License version 2.1 as published
10 -- by the Free Software Foundation, with special exception defined in the file
11 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 -- distribution for complete text of the license and disclaimer of any warranty.
13 --
14 -- Alternatively, this file may be used under the terms of Open CASCADE
15 -- commercial license or contractual agreement.
16
17 private class TrimEdgeTool from BRepFill 
18
19         ---Purpose: Geometric Tool using to construct Offset Wires.
20
21 uses
22
23     Bisec         from Bisector,
24     Edge          from TopoDS,
25     Pnt2d         from gp,
26     Curve         from Geom2d,
27     Geometry      from Geom2d,  
28     SequenceOfPnt from TColgp,
29     Curve         from Geom2dAdaptor
30
31 is
32     Create
33     returns TrimEdgeTool from BRepFill;
34     
35     Create( Bisec   : Bisec    from Bisector;
36             S1, S2  : Geometry from Geom2d;
37             Offset  : Real     from Standard)
38     returns TrimEdgeTool from BRepFill;
39     
40     IntersectWith( me : in out;
41                    Edge1 , Edge2 :        Edge          from TopoDS;
42                    Params        : in out SequenceOfPnt from TColgp)
43     is static;
44
45     AddOrConfuse ( me ;
46                    Start         :        Boolean       from Standard;
47                    Edge1 , Edge2 :        Edge          from TopoDS;
48                    Params  : in out SequenceOfPnt from TColgp)
49     is static;            
50
51
52     IsInside( me; P : Pnt2d from gp)
53     returns Boolean from Standard
54     is static;
55               
56             
57                        
58 fields
59     isPoint1 : Boolean from Standard;
60     isPoint2 : Boolean from Standard;    
61     myP1     : Pnt2d   from gp;
62     myP2     : Pnt2d   from gp;         
63     myC1     : Curve   from Geom2d;
64     myC2     : Curve   from Geom2d;
65     myOffset : Real    from Standard;
66     myBisec  : Bisec   from Bisector;
67     myBis    : Curve   from Geom2dAdaptor;
68 end TrimEdgeTool;