0024157: Parallelization of assembly part of BO
[occt.git] / src / LocOpe / LocOpe_PntFace.cdl
1 -- Created on: 1995-05-29
2 -- Created by: Jacques GOUSSARD
3 -- Copyright (c) 1995-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 PntFace from LocOpe
24
25         ---Purpose: 
26
27 uses Pnt         from gp,
28      Face        from TopoDS,
29      Orientation from TopAbs
30      
31
32 is
33
34     Create
35         ---Purpose: Empty constructor. Useful only for the list.
36         returns PntFace from LocOpe;
37
38
39     Create (P: Pnt from gp; F: Face from TopoDS;
40             Or: Orientation from TopAbs; Param,UPar,VPar: Real from Standard) 
41             
42         returns PntFace from LocOpe;
43         ---C++: inline
44
45     Pnt(me)
46     
47         returns Pnt from gp
48         ---C++: return const&
49         ---C++: inline
50         is static;
51
52
53     Face(me)
54     
55         returns Face from TopoDS
56         ---C++: return const&
57         ---C++: inline
58         is static;
59
60     Orientation(me)
61     
62         returns Orientation from TopAbs
63         ---C++: inline
64         is static;
65
66
67     ChangeOrientation(me: in out)
68     
69         returns Orientation from TopAbs
70         ---C++: return &
71         ---C++: inline
72         is static;
73
74
75     Parameter(me)
76     
77         returns Real from Standard
78         ---C++: inline
79         is static;
80
81
82     UParameter(me)
83     
84         returns Real from Standard
85         ---C++: inline
86         is static;
87
88
89     VParameter(me)
90     
91         returns Real from Standard
92         ---C++: inline
93         is static;
94
95
96 fields
97
98     myPnt  : Pnt         from gp;
99     myFace : Face        from TopoDS;
100     myOri  : Orientation from TopAbs;
101     myPar  : Real        from Standard;
102     myUPar : Real        from Standard;
103     myVPar : Real        from Standard;
104
105 end PntFace;