0023024: Update headers of OCCT files
[occt.git] / src / BRepLib / BRepLib_MakeShape.cxx
1 // Created on: 1993-07-23
2 // Created by: Remi LEQUETTE
3 // Copyright (c) 1993-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 #include <BRepLib_MakeShape.ixx>
24
25 //=======================================================================
26 //function : BRepLib_MakeShape
27 //purpose  : 
28 //=======================================================================
29
30 BRepLib_MakeShape::BRepLib_MakeShape()
31 {
32 }
33
34 //=======================================================================
35 //function : Build
36 //purpose  : 
37 //=======================================================================
38
39 void BRepLib_MakeShape::Build()
40 {
41 }
42
43 //=======================================================================
44 //function : Shape
45 //purpose  : 
46 //=======================================================================
47
48 const TopoDS_Shape&  BRepLib_MakeShape::Shape() const
49 {
50   if (!IsDone()) {
51     // the following is const cast away
52     ((BRepLib_MakeShape*) (void*) this)->Build();
53     Check();
54   }
55   return myShape;
56 }
57
58
59 //=======================================================================
60 //function : operator
61 //purpose  : 
62 //=======================================================================
63
64 BRepLib_MakeShape::operator TopoDS_Shape() const
65 {
66   return Shape();
67 }
68
69
70
71 //=======================================================================
72 //function : HasDescendants
73 //purpose  : 
74 //=======================================================================
75
76 Standard_Boolean BRepLib_MakeShape::HasDescendants(const TopoDS_Face&)const
77 {
78   return (Standard_True);
79 }
80
81
82
83 //=======================================================================
84 //function : FaceStatus
85 //purpose  : 
86 //=======================================================================
87
88 BRepLib_ShapeModification BRepLib_MakeShape::FaceStatus
89   (const TopoDS_Face&) const
90 {
91   BRepLib_ShapeModification myStatus = BRepLib_Trimmed;
92   return myStatus;
93 }
94
95
96 //=======================================================================
97 //function : GeneratedFaces
98 //purpose  : 
99 //=======================================================================
100
101 const TopTools_ListOfShape& BRepLib_MakeShape::DescendantFaces
102   (const TopoDS_Face&)
103 {
104   return myGenFaces;
105 }
106
107 //=======================================================================
108 //function : NbSurfaces
109 //purpose  : 
110 //=======================================================================
111
112 Standard_Integer BRepLib_MakeShape::NbSurfaces() const
113 {
114   return (0);
115 }
116
117 //=======================================================================
118 //function : NewFaces
119 //purpose  : 
120 //=======================================================================
121
122 const TopTools_ListOfShape& BRepLib_MakeShape::NewFaces(const Standard_Integer)
123 {
124   return myNewFaces;
125 }
126
127
128 //=======================================================================
129 //function : FacesFromEdges
130 //purpose  : 
131 //=======================================================================
132
133 const TopTools_ListOfShape& BRepLib_MakeShape::FacesFromEdges
134   (const TopoDS_Edge&)
135 {
136   return myEdgFaces;
137 }