7fd59977 |
1 | // File: TopClass_Classifier2d.lxx |
2 | // Created: Tue Nov 17 17:57:55 1992 |
3 | // Author: Remi LEQUETTE |
4 | // <rle@phylox> |
5 | |
6 | // Modified by skv - Wed Jul 12 15:20:58 2006 OCC12627 |
7 | |
8 | //======================================================================= |
9 | //function : Parameter |
10 | //purpose : |
11 | //======================================================================= |
12 | |
13 | inline Standard_Real TopClass_Classifier2d::Parameter() const |
14 | { |
15 | return myParam; |
16 | } |
17 | |
18 | //======================================================================= |
19 | //function : Intersector |
20 | //purpose : |
21 | //======================================================================= |
22 | |
23 | inline TheIntersector& TopClass_Classifier2d::Intersector() |
24 | { |
25 | return myIntersector; |
26 | } |
27 | |
28 | //======================================================================= |
29 | //function : ClosestIntersection |
30 | //purpose : |
31 | //======================================================================= |
32 | |
33 | inline Standard_Integer TopClass_Classifier2d::ClosestIntersection() const |
34 | { |
35 | return myClosest; |
36 | } |
37 | |
38 | //======================================================================= |
39 | //function : State |
40 | //purpose : |
41 | //======================================================================= |
42 | |
43 | inline TopAbs_State TopClass_Classifier2d::State() const |
44 | { |
45 | return myState; |
46 | } |
47 | |
48 | // Modified by skv - Wed Jul 12 15:20:58 2006 OCC12627 Begin |
49 | |
50 | //======================================================================= |
51 | //function : IsHeadOrEnd |
52 | //purpose : |
53 | //======================================================================= |
54 | |
55 | inline Standard_Boolean TopClass_Classifier2d::IsHeadOrEnd() const |
56 | { |
57 | return myIsHeadOrEnd; |
58 | } |
59 | |
60 | // Modified by skv - Wed Jul 12 15:20:58 2006 OCC12627 End |