// 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 _BRepClass_FaceExplorer_HeaderFile #define _BRepClass_FaceExplorer_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _TopoDS_Face_HeaderFile #include #endif #ifndef _TopExp_Explorer_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _TopAbs_Orientation_HeaderFile #include #endif class TopoDS_Face; class gp_Pnt2d; class gp_Lin2d; class BRepClass_Edge; //! Provide an exploration of a BRep Face for the
//! classification.
class BRepClass_FaceExplorer { 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 BRepClass_FaceExplorer(const TopoDS_Face& F); //! Should return True if the point is outside a
//! bounding volume of the face.
Standard_EXPORT Standard_Boolean Reject(const gp_Pnt2d& P) const; //! Returns in , a segment having at least
//! one intersection with the face boundary to
//! compute intersections.
Standard_EXPORT Standard_Boolean Segment(const gp_Pnt2d& P,gp_Lin2d& L,Standard_Real& Par) ; //! Returns in , a segment having at least
//! one intersection with the face boundary to
//! compute intersections. Each call gives another segment.
Standard_EXPORT Standard_Boolean OtherSegment(const gp_Pnt2d& P,gp_Lin2d& L,Standard_Real& Par) ; //! Starts an exploration of the wires.
Standard_EXPORT void InitWires() ; //! Returns True if there is a current wire.
//!
Standard_Boolean MoreWires() const; //! Sets the explorer to the next wire.
//!
void NextWire() ; //! Returns True if the wire bounding volume does not
//! intersect the segment.
Standard_EXPORT Standard_Boolean RejectWire(const gp_Lin2d& L,const Standard_Real Par) const; //! Starts an exploration of the edges of the current
//! wire.
Standard_EXPORT void InitEdges() ; //! Returns True if there is a current edge.
//!
Standard_Boolean MoreEdges() const; //! Sets the explorer to the next edge.
//!
void NextEdge() ; //! Returns True if the edge bounding volume does not
//! intersect the segment.
Standard_EXPORT Standard_Boolean RejectEdge(const gp_Lin2d& L,const Standard_Real Par) const; //! Current edge in current wire and its orientation.
Standard_EXPORT void CurrentEdge(BRepClass_Edge& E,TopAbs_Orientation& Or) const; protected: private: TopoDS_Face myFace; TopExp_Explorer myWExplorer; TopExp_Explorer myEExplorer; Standard_Integer myCurEdgeInd; Standard_Real myCurEdgePar; }; #include // other Inline functions and methods (like "C++: function call" methods) #endif