Test for 0022778: Bug in BRepMesh
[occt.git] / src / TopOpeBRep / TopOpeBRep_VPointInterClassifier.cdl
CommitLineData
b311480e 1-- Created on: 1993-11-17
2-- Created by: Jean Yves LEBEY
3-- Copyright (c) 1993-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 VPointInterClassifier from TopOpeBRep
23
24uses
25
26 State from TopAbs,
27 Shape from TopoDS,
28 VPointInter from TopOpeBRep,
29 FaceClassifier from BRepClass,
30 PointClassifier from TopOpeBRep
31
32is
33
34 Create returns VPointInterClassifier from TopOpeBRep;
35
36 VPointPosition(me : in out; F : Shape from TopoDS;
37 VP : in out VPointInter from TopOpeBRep;
38 ShapeIndex : Integer from Standard;
39 PC : in out PointClassifier from TopOpeBRep;
40 AssumeINON : Boolean from Standard; Tol : Real)
41 ---Purpose: compute position of VPoint <VP> regarding with face <F>.
42 -- <ShapeIndex> (= 1,2) indicates which (u,v) point of <VP> is used.
43 -- when state is ON, set VP.EdgeON() with the edge containing <VP>
44 -- and associated parameter.
45 -- returns state of VP on ShapeIndex.
46 returns State from TopAbs is static;
47
48 Edge(me)
49 ---Purpose: returns the edge containing the VPoint <VP> used in the
50 -- last VPointPosition() call. Edge is defined if the state previously
51 -- computed is ON, else Edge is a null shape.
52 ---C++: return const &
53 returns Shape from TopoDS is static;
54
55 EdgeParameter(me)
56 ---Purpose: returns the parameter of the VPoint <VP> on Edge()
57 returns Real from Standard is static;
58
59fields
60
61 mySlowFaceClassifier : FaceClassifier from BRepClass;
62 myState : State from TopAbs;
63 myNullShape : Shape from TopoDS; -- dummy, needed by Edge()
64
65end VPointInterClassifier from TopOpeBRep;