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
|
// 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_TVertex_HeaderFile
#define _BRep_TVertex_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_BRep_TVertex.hxx>
#include <gp_Pnt.hxx>
#include <Standard_Real.hxx>
#include <BRep_ListOfPointRepresentation.hxx>
#include <TopoDS_TVertex.hxx>
#include <Handle_TopoDS_TShape.hxx>
class gp_Pnt;
class BRep_ListOfPointRepresentation;
class TopoDS_TShape;
//! The TVertex from BRep inherits from the TVertex
//! from TopoDS. It contains the geometric data.
//!
//! The TVertex contains a 3d point, location and a tolerance.
class BRep_TVertex : public TopoDS_TVertex
{
public:
Standard_EXPORT BRep_TVertex();
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) ;
const gp_Pnt& Pnt() const;
void Pnt (const gp_Pnt& P) ;
const BRep_ListOfPointRepresentation& Points() const;
BRep_ListOfPointRepresentation& ChangePoints() ;
//! Returns a copy of the TShape with no sub-shapes.
Standard_EXPORT Handle(TopoDS_TShape) EmptyCopy() const;
DEFINE_STANDARD_RTTI(BRep_TVertex)
protected:
private:
gp_Pnt myPnt;
Standard_Real myTolerance;
BRep_ListOfPointRepresentation myPoints;
};
#include <BRep_TVertex.lxx>
#endif // _BRep_TVertex_HeaderFile
|