0032603: Coding - get rid of unsused forward declarations
[occt.git] / src / BRepFeat / BRepFeat_RibSlot.hxx
CommitLineData
42cf5bc1 1// Created on: 1997-10-08
2// Created by: Olga KOULECHOVA
3// Copyright (c) 1997-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#ifndef _BRepFeat_RibSlot_HeaderFile
18#define _BRepFeat_RibSlot_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <gp_Pnt.hxx>
25#include <Standard_Boolean.hxx>
26#include <TopTools_DataMapOfShapeListOfShape.hxx>
27#include <TopoDS_Shape.hxx>
28#include <BRepFeat_PerfSelection.hxx>
29#include <TopoDS_Wire.hxx>
30#include <TopoDS_Face.hxx>
31#include <TopTools_DataMapOfShapeShape.hxx>
32#include <TopTools_ListOfShape.hxx>
33#include <BRepFeat_StatusError.hxx>
34#include <BRepBuilderAPI_MakeShape.hxx>
35#include <Standard_Real.hxx>
36#include <Standard_Integer.hxx>
42cf5bc1 37class TopoDS_Edge;
38class Geom_Plane;
39class gp_Dir;
42cf5bc1 40class Geom_Curve;
41class TopoDS_Vertex;
42class LocOpe_Gluer;
42cf5bc1 43class BRepAlgoAPI_BooleanOperation;
44
45
46//! Provides functions to build mechanical features.
47//! Mechanical features include ribs - protrusions and grooves (or slots) - depressions along
48//! planar (linear) surfaces or revolution surfaces. The semantics of mechanical features is built
49//! around giving thickness to a contour. This thickness can either be unilateral - on one side
50//! of the contour - or bilateral - on both sides.
51//! As in the semantics of form features, the thickness is defined by construction of shapes
52//! in specific contexts. The development contexts differ, however,in case of mechanical features.
53//! Here they include extrusion:
54//! - to a limiting face of the basis shape
55//! - to or from a limiting plane
56//! - to a height.
57class BRepFeat_RibSlot : public BRepBuilderAPI_MakeShape
58{
59public:
60
61 DEFINE_STANDARD_ALLOC
62
63
64 //! Returns true if F a TopoDS_Shape of type edge or face has been deleted.
65 Standard_EXPORT virtual Standard_Boolean IsDeleted (const TopoDS_Shape& F) Standard_OVERRIDE;
66
67 //! Returns the list of generated Faces F. This list may be empty.
68 Standard_EXPORT virtual const TopTools_ListOfShape& Modified (const TopoDS_Shape& F) Standard_OVERRIDE;
69
70 //! Returns a list TopTools_ListOfShape of the faces S created in the shape.
71 Standard_EXPORT virtual const TopTools_ListOfShape& Generated (const TopoDS_Shape& S) Standard_OVERRIDE;
72
73 //! Returns the list of shapes created at the bottom of
74 //! the created form. It may be an empty list.
75 Standard_EXPORT const TopTools_ListOfShape& FirstShape() const;
76
77 //! Returns the list of shapes created at the top of the
78 //! created form. It may be an empty list.
79 Standard_EXPORT const TopTools_ListOfShape& LastShape() const;
80
81 //! Returns a list of the limiting and glueing faces
82 //! generated by the feature. These faces did not originally exist in the basis shape.
83 //! The list provides the information necessary for
84 //! subsequent addition of a draft to a face. It may be an empty list.
85 //! If a face has tangent edges, no draft is possible, and the tangent edges must
86 //! subsequently be removed if you want to add a draft to the face.
87 Standard_EXPORT const TopTools_ListOfShape& FacesForDraft() const;
88
89 //! Returns a list of the limiting and glueing edges
90 //! generated by the feature. These edges did not originally exist in the basis shape.
91 //! The list provides the information necessary for
92 //! subsequent addition of fillets. It may be an empty list.
93 Standard_EXPORT const TopTools_ListOfShape& NewEdges() const;
94
95 //! Returns a list of the tangent edges among the
96 //! limiting and glueing edges generated by the
97 //! feature. These edges did not originally exist in
98 //! the basis shape and are tangent to the face
99 //! against which the feature is built.
100 //! The list provides the information necessary for
101 //! subsequent addition of fillets. It may be an empty list.
102 //! If an edge is tangent, no fillet is possible, and
103 //! the edge must subsequently be removed if you want to add a fillet.
104 Standard_EXPORT const TopTools_ListOfShape& TgtEdges() const;
105
106 Standard_EXPORT static Standard_Real IntPar (const Handle(Geom_Curve)& C, const gp_Pnt& P);
107
108 Standard_EXPORT static TopoDS_Face ChoiceOfFaces (TopTools_ListOfShape& faces, const Handle(Geom_Curve)& cc, const Standard_Real par, const Standard_Real bnd, const Handle(Geom_Plane)& Pln);
109
110 Standard_EXPORT BRepFeat_StatusError CurrentStatusError() const;
111
112
113
114
115protected:
116
117
118 //! Redefines the empty constructor.
119 BRepFeat_RibSlot();
120
121 //! General perform method...
122 Standard_EXPORT void LFPerform();
123
124 Standard_EXPORT gp_Pnt CheckPoint (const TopoDS_Edge& e, const Standard_Real bnd, const Handle(Geom_Plane)& Pln);
125
126 Standard_EXPORT gp_Dir Normal (const TopoDS_Face& F, const gp_Pnt& P);
127
128 Standard_EXPORT void EdgeExtention (TopoDS_Edge& e, const Standard_Real bnd, const Standard_Boolean FirstLast);
129
130 Standard_EXPORT Standard_Real HeightMax (const TopoDS_Shape& theSbase, const TopoDS_Shape& theSUntil, gp_Pnt& p1, gp_Pnt& p2);
131
132 Standard_EXPORT Standard_Boolean ExtremeFaces (const Standard_Boolean RevolRib, const Standard_Real bnd, const Handle(Geom_Plane)& Pln, TopoDS_Edge& FirstEdge, TopoDS_Edge& LastEdge, TopoDS_Face& FirstFace, TopoDS_Face& LastFace, TopoDS_Vertex& FirstVertex, TopoDS_Vertex& LastVertex, Standard_Boolean& OnFirstFace, Standard_Boolean& OnLastFace, Standard_Boolean& PtOnFirstEdge, Standard_Boolean& PtOnLastEdge, TopoDS_Edge& OnFirstEdge, TopoDS_Edge& OnLastEdge);
133
134 Standard_EXPORT void PtOnEdgeVertex (const Standard_Boolean RevolRib, const TopoDS_Shape& shape, const gp_Pnt& point, const TopoDS_Vertex& FirstVertex, const TopoDS_Vertex& LastVertex, Standard_Boolean& PtOnEdge, TopoDS_Edge& OnEdge, Standard_Boolean& PtOnVertex, TopoDS_Vertex& OnVertex);
135
136 Standard_EXPORT Standard_Boolean SlidingProfile (TopoDS_Face& Prof, const Standard_Boolean RevolRib, const Standard_Real myTol, Standard_Integer& Concavite, const Handle(Geom_Plane)& myPln, const TopoDS_Face& BndFace, const gp_Pnt& CheckPnt, const TopoDS_Face& FirstFace, const TopoDS_Face& LastFace, const TopoDS_Vertex& FirstVertex, const TopoDS_Vertex& LastVertex, const TopoDS_Edge& FirstEdge, const TopoDS_Edge& LastEdge);
137
138 Standard_EXPORT Standard_Boolean NoSlidingProfile (TopoDS_Face& Prof, const Standard_Boolean RevolRib, const Standard_Real myTol, Standard_Integer& Concavite, const Handle(Geom_Plane)& myPln, const Standard_Real bnd, const TopoDS_Face& BndFace, const gp_Pnt& CheckPnt, const TopoDS_Face& FirstFace, const TopoDS_Face& LastFace, const TopoDS_Vertex& FirstVertex, const TopoDS_Vertex& LastVertex, const TopoDS_Edge& FirstEdge, const TopoDS_Edge& LastEdge, const Standard_Boolean OnFirstFace, const Standard_Boolean OnLastFace);
139
140 //! Updates the data structures of descendant
141 //! shapes during the glueing operation.Returns the modified, generated
142 //! and deleted faces during the course of the glueing operation.
143 Standard_EXPORT void UpdateDescendants (const LocOpe_Gluer& G);
144
42cf5bc1 145 Standard_EXPORT void UpdateDescendants (const BRepAlgoAPI_BooleanOperation& aBOP, const TopoDS_Shape& SResult, const Standard_Boolean SkipFace = Standard_False);
146
147
148 gp_Pnt myFirstPnt;
149 gp_Pnt myLastPnt;
150 Standard_Boolean myFuse;
151 Standard_Boolean mySliding;
152 TopTools_DataMapOfShapeListOfShape myMap;
153 TopTools_DataMapOfShapeListOfShape myLFMap;
154 TopoDS_Shape myFShape;
155 TopoDS_Shape myLShape;
156 BRepFeat_PerfSelection myPerfSelection;
157 TopoDS_Wire myWire;
158 TopoDS_Shape mySbase;
159 TopoDS_Face mySkface;
160 TopoDS_Face myPbase;
161 TopoDS_Shape myGShape;
162 TopoDS_Shape mySUntil;
163 TopTools_DataMapOfShapeShape myGluedF;
164 TopTools_ListOfShape myNewEdges;
165 TopTools_ListOfShape myTgtEdges;
166 TopTools_ListOfShape myFacesForDraft;
167 BRepFeat_StatusError myStatusError;
168
169
170private:
171
172
173
174
175
176};
177
178
179#include <BRepFeat_RibSlot.lxx>
180
181
182
183
184
185#endif // _BRepFeat_RibSlot_HeaderFile