0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / TopOpeBRepTool / TopOpeBRepTool_SolidClassifier.hxx
CommitLineData
42cf5bc1 1// Created on: 1996-08-27
2// Created by: Jean Yves LEBEY
3// Copyright (c) 1996-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _TopOpeBRepTool_SolidClassifier_HeaderFile
18#define _TopOpeBRepTool_SolidClassifier_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <TopOpeBRepTool_PSoClassif.hxx>
25#include <TopTools_IndexedDataMapOfShapeAddress.hxx>
26#include <TopAbs_State.hxx>
27#include <TopoDS_Shell.hxx>
28#include <TopoDS_Solid.hxx>
29#include <BRep_Builder.hxx>
30#include <Standard_Real.hxx>
31class TopoDS_Solid;
32class gp_Pnt;
33class TopoDS_Shell;
34
35
36
37class TopOpeBRepTool_SolidClassifier
38{
39public:
40
41 DEFINE_STANDARD_ALLOC
42
43
44 Standard_EXPORT TopOpeBRepTool_SolidClassifier();
45
46 Standard_EXPORT void Clear();
47
e6f550da 48 Standard_EXPORT ~TopOpeBRepTool_SolidClassifier();
42cf5bc1 49
50 Standard_EXPORT void LoadSolid (const TopoDS_Solid& S);
51
52 //! compute the position of point <P> regarding with the
53 //! geometric domain of the solid <S>.
54 Standard_EXPORT TopAbs_State Classify (const TopoDS_Solid& S, const gp_Pnt& P, const Standard_Real Tol);
55
56 Standard_EXPORT void LoadShell (const TopoDS_Shell& S);
57
58 //! compute the position of point <P> regarding with the
59 //! geometric domain of the shell <S>.
60 Standard_EXPORT TopAbs_State Classify (const TopoDS_Shell& S, const gp_Pnt& P, const Standard_Real Tol);
61
62 Standard_EXPORT TopAbs_State State() const;
63
64
65
66
67protected:
68
69
70
71
72
73private:
74
75
76
77 TopOpeBRepTool_PSoClassif myPClassifier;
78 TopTools_IndexedDataMapOfShapeAddress myShapeClassifierMap;
79 TopAbs_State myState;
80 TopoDS_Shell myShell;
81 TopoDS_Solid mySolid;
82 BRep_Builder myBuilder;
83
84
85};
86
87
88
89
90
91
92
93#endif // _TopOpeBRepTool_SolidClassifier_HeaderFile