summaryrefslogtreecommitdiff
path: root/inc/BRepAlgo_NormalProjection.hxx
blob: 8f2d0ca998ce56bbc98bf22306c91099d02507ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to 
// this header file considered to be the "object code" form of the original source.

#ifndef _BRepAlgo_NormalProjection_HeaderFile
#define _BRepAlgo_NormalProjection_HeaderFile

#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_Macro_HeaderFile
#include <Standard_Macro.hxx>
#endif

#ifndef _TopoDS_Shape_HeaderFile
#include <TopoDS_Shape.hxx>
#endif
#ifndef _Standard_Boolean_HeaderFile
#include <Standard_Boolean.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
#ifndef _GeomAbs_Shape_HeaderFile
#include <GeomAbs_Shape.hxx>
#endif
#ifndef _Standard_Integer_HeaderFile
#include <Standard_Integer.hxx>
#endif
#ifndef _TopTools_DataMapOfShapeShape_HeaderFile
#include <TopTools_DataMapOfShapeShape.hxx>
#endif
#ifndef _TopTools_DataMapOfShapeListOfShape_HeaderFile
#include <TopTools_DataMapOfShapeListOfShape.hxx>
#endif
class Standard_ConstructionError;
class Standard_NoSuchObject;
class StdFail_NotDone;
class TopoDS_Shape;
class TopoDS_Edge;
class TopTools_ListOfShape;
class Adaptor3d_Curve;


//! This class makes the projection  of a wire on a <br>
//!           shape. <br>
class BRepAlgo_NormalProjection  {
public:

  void* operator new(size_t,void* anAddress) 
  {
    return anAddress;
  }
  void* operator new(size_t size) 
  {
    return Standard::Allocate(size); 
  }
  void  operator delete(void *anAddress) 
  {
    if (anAddress) Standard::Free((Standard_Address&)anAddress); 
  }

  
  Standard_EXPORT   BRepAlgo_NormalProjection();
  
  Standard_EXPORT   BRepAlgo_NormalProjection(const TopoDS_Shape& S);
  
  Standard_EXPORT     void Init(const TopoDS_Shape& S) ;
  //! Add an edge or a wire to the list of shape to project <br>
//! <br>
  Standard_EXPORT     void Add(const TopoDS_Shape& ToProj) ;
  //! Set the parameters  used  for computation <br>
//!          Tol3d is the requiered  tolerance between the  3d projected <br>
//!          curve  and its 2d representation <br>
//!          InternalContinuity  is the order of constraints <br>
//!          used for  approximation. <br>
//!          MaxDeg and MaxSeg are the maximum degree and the maximum <br>
//!          number of segment for BSpline resulting of an approximation. <br>
  Standard_EXPORT     void SetParams(const Standard_Real Tol3D,const Standard_Real Tol2D,const GeomAbs_Shape InternalContinuity,const Standard_Integer MaxDegree,const Standard_Integer MaxSeg) ;
  //! Set the parameters  used  for computation <br>
//!          in their default values <br>
  Standard_EXPORT     void SetDefaultParams() ;
  //!  Sets the maximum distance between target shape and <br>
//!  shape to project. If this condition is not satisfied then <br>
//!  corresponding part of solution is discarded. <br>
//!  if MaxDist < 0 then this method does not affect the algorithm <br>
  Standard_EXPORT     void SetMaxDistance(const Standard_Real MaxDist) ;
  //!  if  With3d = Standard_False the 3dcurve is not computed <br>
//! the  initial 3dcurve is kept  to  build the  resulting edges. <br>
  Standard_EXPORT     void Compute3d(const Standard_Boolean With3d = Standard_True) ;
  //!  Manage  limitation  of  projected  edges. <br>
  Standard_EXPORT     void SetLimit(const Standard_Boolean FaceBoundaries = Standard_True) ;
  //! Builds the result as a  compound. <br>
  Standard_EXPORT     void Build() ;
  
  Standard_EXPORT     Standard_Boolean IsDone() const;
  //! returns the result <br>
  Standard_EXPORT    const TopoDS_Shape& Projection() const;
  //! For a resulting edge, returns the corresponding initial edge. <br>
  Standard_EXPORT    const TopoDS_Shape& Ancestor(const TopoDS_Edge& E) const;
  //! For a projected edge, returns the corresponding initial face. <br>
  Standard_EXPORT    const TopoDS_Shape& Couple(const TopoDS_Edge& E) const;
  //! Returns the  list   of shapes generated   from the <br>
//!          shape <S>. <br>
  Standard_EXPORT    const TopTools_ListOfShape& Generated(const TopoDS_Shape& S) ;
  
  Standard_EXPORT     Standard_Boolean IsElementary(const Adaptor3d_Curve& C) const;
  //! build the result as a list of wire if possible in -- <br>
//!  a first returns a wire only if there is only a wire. <br>
//! <br>
  Standard_EXPORT     Standard_Boolean BuildWire(TopTools_ListOfShape& Liste) const;





protected:





private:



TopoDS_Shape myShape;
Standard_Boolean myIsDone;
Standard_Real myTol3d;
Standard_Real myTol2d;
Standard_Real myMaxDist;
Standard_Boolean myWith3d;
GeomAbs_Shape myContinuity;
Standard_Integer myMaxDegree;
Standard_Integer myMaxSeg;
Standard_Boolean myFaceBounds;
TopoDS_Shape myToProj;
TopTools_DataMapOfShapeShape myAncestorMap;
TopTools_DataMapOfShapeShape myCorresp;
TopTools_DataMapOfShapeListOfShape myDescendants;
TopoDS_Shape myRes;


};





// other Inline functions and methods (like "C++: function call" methods)


#endif