blob: 4b7f181c8634b7cea62680916883d9e46f541f40 (
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
|
// 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 _BRep_TEdge_HeaderFile
#define _BRep_TEdge_HeaderFile
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_DefineHandle_HeaderFile
#include <Standard_DefineHandle.hxx>
#endif
#ifndef _Handle_BRep_TEdge_HeaderFile
#include <Handle_BRep_TEdge.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
#ifndef _Standard_Integer_HeaderFile
#include <Standard_Integer.hxx>
#endif
#ifndef _BRep_ListOfCurveRepresentation_HeaderFile
#include <BRep_ListOfCurveRepresentation.hxx>
#endif
#ifndef _TopoDS_TEdge_HeaderFile
#include <TopoDS_TEdge.hxx>
#endif
#ifndef _Standard_Boolean_HeaderFile
#include <Standard_Boolean.hxx>
#endif
#ifndef _Handle_TopoDS_TShape_HeaderFile
#include <Handle_TopoDS_TShape.hxx>
#endif
class BRep_ListOfCurveRepresentation;
class TopoDS_TShape;
//! The TEdge from BRep is inherited from the TEdge <br>
//! from TopoDS. It contains the geometric data. <br>
//! <br>
//! The TEdge contains : <br>
//! <br>
//! * A tolerance. <br>
//! <br>
//! * A same parameter flag. <br>
//! <br>
//! * A same range flag. <br>
//! <br>
//! * A Degenerated flag. <br>
//! <br>
//! * A list of curve representation. <br>
class BRep_TEdge : public TopoDS_TEdge {
public:
//! Creates an empty TEdge. <br>
Standard_EXPORT BRep_TEdge();
Standard_Real Tolerance() const;
void Tolerance(const Standard_Real T) ;
//! Sets the tolerance to the max of <T> and the <br>
//! current tolerance. <br>
//! <br>
void UpdateTolerance(const Standard_Real T) ;
Standard_EXPORT Standard_Boolean SameParameter() const;
Standard_EXPORT void SameParameter(const Standard_Boolean S) ;
Standard_EXPORT Standard_Boolean SameRange() const;
Standard_EXPORT void SameRange(const Standard_Boolean S) ;
Standard_EXPORT Standard_Boolean Degenerated() const;
Standard_EXPORT void Degenerated(const Standard_Boolean S) ;
const BRep_ListOfCurveRepresentation& Curves() const;
BRep_ListOfCurveRepresentation& ChangeCurves() ;
//! Returns a copy of the TShape with no sub-shapes. <br>
Standard_EXPORT Handle_TopoDS_TShape EmptyCopy() const;
DEFINE_STANDARD_RTTI(BRep_TEdge)
protected:
private:
Standard_Real myTolerance;
Standard_Integer myFlags;
BRep_ListOfCurveRepresentation myCurves;
};
#include <BRep_TEdge.lxx>
// other Inline functions and methods (like "C++: function call" methods)
#endif
|