0024157: Parallelization of assembly part of BO
[occt.git] / src / TopOpeBRepTool / TopOpeBRepTool_SolidClassifier.cdl
CommitLineData
b311480e 1-- Created on: 1996-08-27
2-- Created by: Jean Yves LEBEY
3-- Copyright (c) 1996-1999 Matra Datavision
4-- Copyright (c) 1999-2012 OPEN CASCADE SAS
5--
6-- The content of this file is subject to the Open CASCADE Technology Public
7-- License Version 6.5 (the "License"). You may not use the content of this file
8-- except in compliance with the License. Please obtain a copy of the License
9-- at http://www.opencascade.org and read it completely before using this file.
10--
11-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13--
14-- The Original Code and all software distributed under the License is
15-- distributed on an "AS IS" basis, without warranty of any kind, and the
16-- Initial Developer hereby disclaims all such warranties, including without
17-- limitation, any warranties of merchantability, fitness for a particular
18-- purpose or non-infringement. Please see the License for the specific terms
19-- and conditions governing the rights and limitations under the License.
20
7fd59977 21
22class SolidClassifier from TopOpeBRepTool
23
24uses
25
26 State from TopAbs,
27 Shell from TopoDS,
28 Solid from TopoDS,
29 Pnt from gp,
30 PSoClassif from TopOpeBRepTool,
31--modified by NIZNHY-PKV Mon Dec 16 10:37:26 2002 f
32-- IndexedDataMapOfSolidClassifier from TopOpeBRepTool,
33 IndexedDataMapOfShapeAddress from TopTools,
34--modified by NIZNHY-PKV Mon Dec 16 10:37:30 2002 t
35 Builder from BRep
36
37is
38
39 Create returns SolidClassifier from TopOpeBRepTool;
40
41 Clear(me : in out) is static;
42
43--modified by NIZNHY-PKV Mon Dec 16 10:37:57 2002 f
44 Destroy(me: out);
45 ---C++: alias "Standard_EXPORT ~TopOpeBRepTool_SolidClassifier() {Destroy();}"
46--modified by NIZNHY-PKV Mon Dec 16 10:38:00 2002 t
47
48 LoadSolid(me : in out; S : Solid) is static;
49
50 Classify(me : in out; S : Solid; P : Pnt; Tol : Real)
51 ---Purpose: compute the position of point <P> regarding with the
52 -- geometric domain of the solid <S>.
53 returns State from TopAbs
54 is static;
55
56 LoadShell(me : in out; S : Shell) is static;
57
58 Classify(me : in out; S : Shell; P : Pnt; Tol : Real)
59 ---Purpose: compute the position of point <P> regarding with the
60 -- geometric domain of the shell <S>.
61 returns State from TopAbs
62 is static;
63
64 State(me) returns State from TopAbs
65 is static;
66
67fields
68
69 myPClassifier : PSoClassif from TopOpeBRepTool; -- as BRepClass3d_SolidClassifier*
70--modified by NIZNHY-PKV Mon Dec 16 10:59:22 2002 f
71-- myClassifierMap : IndexedDataMapOfSolidClassifier from TopOpeBRepTool;
72 myShapeClassifierMap: IndexedDataMapOfShapeAddress from TopTools;
73--modified by NIZNHY-PKV Mon Dec 16 10:59:28 2002 t
74 myState : State from TopAbs;
75
76 myShell : Shell from TopoDS;
77 mySolid : Solid from TopoDS;
78 myBuilder : Builder from BRep;
79
80end SolidClassifier from TopOpeBRepTool;