blob: 9380cbc7aed6c2d1ba075037af837f2324b7eb48 (
plain)
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
|
-- File: BRepClass_FaceClassifier.cdl
-- Created: Fri May 28 15:13:53 1993
-- Author: Modelistation
-- <model@sdsun1>
---Copyright: Matra Datavision 1993
class FaceClassifier from BRepClass inherits FClassifier from BRepClass
---Purpose: Provides Constructors.
uses
FaceExplorer from BRepClass,
Face from TopoDS,
Pnt2d from gp,
Pnt from gp
is
Create returns FaceClassifier from BRepClass;
---Purpose: Empty constructor, undefined algorithm.
Create(F : in out FaceExplorer from BRepClass;
P : Pnt2d from gp; Tol : Real)
returns FaceClassifier from BRepClass;
---Purpose: Creates an algorithm to classify the Point P with
-- Tolerance <T> on the face described by <F>.
Create(F : Face from TopoDS;
P : Pnt2d from gp; Tol : Real)
returns FaceClassifier from BRepClass;
---Purpose: Creates an algorithm to classify the Point P with
-- Tolerance <T> on the face <F>.
Perform(me : in out;
F : Face from TopoDS;
P : Pnt2d from gp; Tol : Real)
---Purpose: Classify the Point P with Tolerance <T> on the
-- face described by <F>.
is static;
Create(F : in out FaceExplorer from BRepClass;
P : Pnt from gp; Tol : Real)
returns FaceClassifier from BRepClass;
---Purpose: Creates an algorithm to classify the Point P with
-- Tolerance <T> on the face described by <F>.
Create(F : Face from TopoDS;
P : Pnt from gp; Tol : Real)
returns FaceClassifier from BRepClass;
---Purpose: Creates an algorithm to classify the Point P with
-- Tolerance <T> on the face <F>.
Perform(me : in out;
F : Face from TopoDS;
P : Pnt from gp; Tol : Real)
---Purpose: Classify the Point P with Tolerance <T> on the
-- face described by <F>.
is static;
end FaceClassifier;
|