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
|
// 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
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_BRep_TEdge.hxx>
#include <Standard_Real.hxx>
#include <Standard_Integer.hxx>
#include <BRep_ListOfCurveRepresentation.hxx>
#include <TopoDS_TEdge.hxx>
#include <Standard_Boolean.hxx>
#include <Handle_TopoDS_TShape.hxx>
class BRep_ListOfCurveRepresentation;
class TopoDS_TShape;
//! The TEdge from BRep is inherited from the TEdge
//! from TopoDS. It contains the geometric data.
//!
//! The TEdge contains :
//!
//! * A tolerance.
//!
//! * A same parameter flag.
//!
//! * A same range flag.
//!
//! * A Degenerated flag.
//!
//! * A list of curve representation.
class BRep_TEdge : public TopoDS_TEdge
{
public:
//! Creates an empty TEdge.
Standard_EXPORT BRep_TEdge();
Standard_Real Tolerance() const;
void Tolerance (const Standard_Real T) ;
//! Sets the tolerance to the max of <T> and the
//! current tolerance.
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.
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>
#endif // _BRep_TEdge_HeaderFile
|