Test for 0022778: Bug in BRepMesh
[occt.git] / src / BOPTools / BOPTools_PointBetween.cdl
1 -- Created on: 2001-04-19
2 -- Created by: Peter KURNEV
3 -- Copyright (c) 2001-2012 OPEN CASCADE SAS
4 --
5 -- The content of this file is subject to the Open CASCADE Technology Public
6 -- License Version 6.5 (the "License"). You may not use the content of this file
7 -- except in compliance with the License. Please obtain a copy of the License
8 -- at http://www.opencascade.org and read it completely before using this file.
9 --
10 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12 --
13 -- The Original Code and all software distributed under the License is
14 -- distributed on an "AS IS" basis, without warranty of any kind, and the
15 -- Initial Developer hereby disclaims all such warranties, including without
16 -- limitation, any warranties of merchantability, fitness for a particular
17 -- purpose or non-infringement. Please see the License for the specific terms
18 -- and conditions governing the rights and limitations under the License.
19
20
21
22 class PointBetween from BOPTools 
23
24         ---Purpose:  
25         --  class for storing geometry information about  
26         --  a point between neighbouring paves along 
27         --  an edge 
28         --- 
29 uses 
30     Pnt from gp
31     
32
33
34 is 
35     Create  
36         returns PointBetween from BOPTools;  
37         ---Purpose:  
38         --- Empty constructor 
39         ---
40     SetParameter (me:out; 
41             T:Real  from  Standard); 
42         ---Purpose:  
43         --- Modifier 
44         --- sets value of the point's parameter on the edge  
45         ---
46     SetUV (me:out; 
47             U:Real  from  Standard;      
48             V:Real  from  Standard);       
49         ---Purpose:  
50         --- Modifier 
51         --- sets values of the point's parameter on the face  
52         ---
53     SetPnt (me:out; 
54             aP:Pnt from gp); 
55         ---Purpose:  
56         --- Modifier 
57         --- sets the 3D-point   
58         ---
59     Parameter (me) 
60         returns Real  from  Standard ; 
61         ---Purpose:  
62         --- Selector
63         ---
64     UV  (me; 
65            U:out Real  from  Standard;      
66            V:out Real  from  Standard);  
67         ---Purpose:  
68         --- Selector
69         ---
70     Pnt (me) 
71         returns Pnt from gp; 
72         ---C++:  return const &          
73         ---Purpose:  
74         --- Selector
75         ---
76     
77 fields 
78    
79     myT  :  Real  from  Standard;  
80     myU  :  Real  from  Standard;  
81     myV  :  Real  from  Standard;  
82     myPnt:  Pnt   from  gp; 
83      
84 end PointBetween;