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
|
// 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 _TopOpeBRepTool_SolidClassifier_HeaderFile
#define _TopOpeBRepTool_SolidClassifier_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Macro.hxx>
#include <TopOpeBRepTool_PSoClassif.hxx>
#include <TopTools_IndexedDataMapOfShapeAddress.hxx>
#include <TopAbs_State.hxx>
#include <TopoDS_Shell.hxx>
#include <TopoDS_Solid.hxx>
#include <BRep_Builder.hxx>
#include <Standard_Real.hxx>
class TopoDS_Solid;
class gp_Pnt;
class TopoDS_Shell;
class TopOpeBRepTool_SolidClassifier
{
public:
DEFINE_STANDARD_ALLOC
Standard_EXPORT TopOpeBRepTool_SolidClassifier();
Standard_EXPORT void Clear() ;
Standard_EXPORT void Destroy() ;
Standard_EXPORT ~TopOpeBRepTool_SolidClassifier() {Destroy();}
Standard_EXPORT void LoadSolid (const TopoDS_Solid& S) ;
//! compute the position of point <P> regarding with the
//! geometric domain of the solid <S>.
Standard_EXPORT TopAbs_State Classify (const TopoDS_Solid& S, const gp_Pnt& P, const Standard_Real Tol) ;
Standard_EXPORT void LoadShell (const TopoDS_Shell& S) ;
//! compute the position of point <P> regarding with the
//! geometric domain of the shell <S>.
Standard_EXPORT TopAbs_State Classify (const TopoDS_Shell& S, const gp_Pnt& P, const Standard_Real Tol) ;
Standard_EXPORT TopAbs_State State() const;
protected:
private:
TopOpeBRepTool_PSoClassif myPClassifier;
TopTools_IndexedDataMapOfShapeAddress myShapeClassifierMap;
TopAbs_State myState;
TopoDS_Shell myShell;
TopoDS_Solid mySolid;
BRep_Builder myBuilder;
};
#endif // _TopOpeBRepTool_SolidClassifier_HeaderFile
|