blob: db0885e09925db7e4eeea1415162a30a44e9669d (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
-- File: IntTools_FClass2d.cdl
-- Created: Wed Mar 22 09:29:42 1995
-- Author: Laurent BUCHARD
-- <lbr@mastox>
---Copyright: Matra Datavision 1995
class FClass2d from IntTools
---Purpose: Class provides an algorithm to classify a 2d Point
--- in 2d space of face using boundaries of the face.
uses
Pnt2d from gp,
Face from TopoDS,
State from TopAbs,
SequenceOfInteger from TColStd,
SeqOfPtr from BRepTopAdaptor
is
Create
returns FClass2d from IntTools;
---Purpose:
--- Empty constructor
---
Create( F: Face from TopoDS;
Tol: Real from Standard)
returns FClass2d from IntTools;
---Purpose:
--- Initializes algorithm by the face F
--- and tolerance Tol
---
Init (me:out;
F: Face from TopoDS;
Tol: Real from Standard);
---Purpose:
--- Initializes algorithm by the face F
--- and tolerance Tol
---
PerformInfinitePoint(me)
returns State from TopAbs;
---Purpose:
--- Returns state of infinite 2d point relatively to (0, 0)
---
Perform(me;
Puv: Pnt2d from gp;
RecadreOnPeriodic: Boolean from Standard=Standard_True)
returns State from TopAbs;
---Purpose:
--- Returns state of the 2d point Puv.
--- If RecadreOnPeriodic is true (defalut value),
--- for the periodic surface 2d point, adjusted to period, is
--- classified.
---
Destroy(me: in out);
---C++: alias ~
---Purpose:
--- Destructor
---
TestOnRestriction(me;
Puv: Pnt2d from gp;
Tol: Real from Standard;
RecadreOnPeriodic: Boolean from Standard = Standard_True)
returns State from TopAbs;
---Purpose:
--- Test a point with +- an offset (Tol) and returns
--- On if some points are OUT an some are IN
-- (Caution: Internal use . see the code for more details)
---
--modified by NIZNHY-PKV Mon May 29 10:47:52 2006f
IsHole(me)
returns Boolean from Standard;
--modified by NIZNHY-PKV Mon May 29 10:47:54 2006t
fields
TabClass : SeqOfPtr from BRepTopAdaptor;
TabOrien : SequenceOfInteger from TColStd;
Toluv : Real from Standard;
Face : Face from TopoDS;
U1 : Real from Standard;
V1 : Real from Standard;
U2 : Real from Standard;
V2 : Real from Standard;
Umin : Real from Standard;
Umax : Real from Standard;
Vmin : Real from Standard;
Vmax : Real from Standard;
--modified by NIZNHY-PKV Mon May 29 10:44:12 2006f
myIsHole : Boolean from Standard;
--modified by NIZNHY-PKV Mon May 29 10:44:14 2006t
end FClass2d ;
|