summaryrefslogtreecommitdiff
path: root/inc/ShapeFix_SplitTool.hxx
blob: 4731e16c088435005f106c159fb46319384b2aab (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
// 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 _ShapeFix_SplitTool_HeaderFile
#define _ShapeFix_SplitTool_HeaderFile

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

#ifndef _Standard_Boolean_HeaderFile
#include <Standard_Boolean.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
#ifndef _Standard_Integer_HeaderFile
#include <Standard_Integer.hxx>
#endif
#ifndef _Handle_ShapeBuild_ReShape_HeaderFile
#include <Handle_ShapeBuild_ReShape.hxx>
#endif
class TopoDS_Edge;
class TopoDS_Vertex;
class TopoDS_Face;
class TopTools_SequenceOfShape;
class ShapeBuild_ReShape;


//! Tool for splitting and cutting edges; includes methods <br>
//!          used in OverlappingTool and IntersectionTool <br>
class ShapeFix_SplitTool  {
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); 
  }

  //! Empty constructor <br>
  Standard_EXPORT   ShapeFix_SplitTool();
  //! Split edge on two new edges using new vertex "vert" <br>
//!          and "param" - parameter for splitting <br>
//!          The "face" is necessary for pcurves and using TransferParameterProj <br>
  Standard_EXPORT     Standard_Boolean SplitEdge(const TopoDS_Edge& edge,const Standard_Real param,const TopoDS_Vertex& vert,const TopoDS_Face& face,TopoDS_Edge& newE1,TopoDS_Edge& newE2,const Standard_Real tol3d,const Standard_Real tol2d) const;
  //! Split edge on two new edges using new vertex "vert" <br>
//!          and "param1" and "param2" - parameter for splitting and cutting <br>
//!          The "face" is necessary for pcurves and using TransferParameterProj <br>
  Standard_EXPORT     Standard_Boolean SplitEdge(const TopoDS_Edge& edge,const Standard_Real param1,const Standard_Real param2,const TopoDS_Vertex& vert,const TopoDS_Face& face,TopoDS_Edge& newE1,TopoDS_Edge& newE2,const Standard_Real tol3d,const Standard_Real tol2d) const;
  //! Cut edge by parameters pend and cut <br>
  Standard_EXPORT     Standard_Boolean CutEdge(const TopoDS_Edge& edge,const Standard_Real pend,const Standard_Real cut,const TopoDS_Face& face,Standard_Boolean& iscutline) const;
  //! Split edge on two new edges using two new vertex V1 and V2 <br>
//!          and two parameters for splitting - fp and lp correspondingly <br>
//!          The "face" is necessary for pcurves and using TransferParameterProj <br>
//!          aNum - number of edge in SeqE which corresponding to [fp,lp] <br>
  Standard_EXPORT     Standard_Boolean SplitEdge(const TopoDS_Edge& edge,const Standard_Real fp,const TopoDS_Vertex& V1,const Standard_Real lp,const TopoDS_Vertex& V2,const TopoDS_Face& face,TopTools_SequenceOfShape& SeqE,Standard_Integer& aNum,const Handle(ShapeBuild_ReShape)& context,const Standard_Real tol3d,const Standard_Real tol2d) const;





protected:





private:





};





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


#endif