Test for 0022778: Bug in BRepMesh
[occt.git] / src / IntPatch / IntPatch_LineConstructor.cdl
1 -- Created on: 1996-11-07
2 -- Created by: Laurent BUCHARD
3 -- Copyright (c) 1996-1999 Matra Datavision
4 -- Copyright (c) 1999-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22
23 class LineConstructor from IntPatch
24
25     ---Purpose: The intersections  algorithms compute the intersection
26     --          on two surfaces and  return the intersections lines as
27     --          IntPatch_Line.  
28
29     --          a  IntPatch   Line contains  a   geometrical part  and
30     --          several topological informations (the    intersections
31     --          between the intersection curve and the restrictions of
32     --          the faces.) 
33     --          
34     --            The LineConstructor algorithm takes an IntPatch_Line
35     --            and compute on this object the sections which belong
36     --            to the two  faces (which are inside the restrictions
37     --            of the faces)
38     --            
39
40 uses 
41     HSurface       from Adaptor3d,
42     TopolTool      from Adaptor3d,
43     SequenceOfLine from IntPatch,
44     Line           from  IntPatch,
45     SurfaceType    from GeomAbs
46
47 is   
48
49     Create(mode  :  Integer  from  Standard) 
50      
51      
52         --Purpose: ***** THE ONLY MODE SUPPORTED IS MODE=2 *****
53         --Purpose: mode = 0 .... Nothing is done  
54         --          
55         --         mode = 1 .... Only cuts the line. 
56         --         
57         --         mode = 2 .... Cuts the line and keep the valid lines
58         --         
59         returns  LineConstructor  from  IntPatch; 
60          
61     Perform(me:  in  out; 
62             SL :  SequenceOfLine from IntPatch;
63             L  :  Line         from  IntPatch;     
64             S1 :  HSurface from Adaptor3d; 
65             D1 :  TopolTool from Adaptor3d; 
66             S2 :  HSurface from Adaptor3d; 
67             D2 :  TopolTool from Adaptor3d;
68             Tol:  Real        from Standard)
69        is  static; 
70         
71     NbLines(me) 
72      
73           returns  Integer  from  Standard 
74           is  static; 
75            
76     Line(me;  index:  Integer  from  Standard) 
77          
78           returns  Line  from  IntPatch
79           is  static;
80
81 fields
82
83     slin       : SequenceOfLine from IntPatch;
84
85 end LineConstructor;