0022651: Impossible to build OCC as static library due to using Standard_EXPORT inste...
[occt.git] / src / TopClass / TopClass_Classifier3d.gxx
1 // Created on: 1994-03-30
2 // Created by: Laurent BUCHARD
3 // Copyright (c) 1994-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 //======================================================================
18 TopClass_Classifier3d::TopClass_Classifier3d() : isSet(Standard_False)
19 {
20 }
21
22 //======================================================================
23 void TopClass_Classifier3d::Reset(const gp_Lin&       L,
24                                  const Standard_Real,
25                                  const Standard_Real Tol) { 
26   myLin       = L;
27   myParam     = RealLast();
28   myTolerance = Tol;
29   myState     = TopAbs_UNKNOWN;
30   isSet       = Standard_True;
31 }
32 //======================================================================
33 #include <IntCurveSurface_IntersectionPoint.hxx>
34 #include <IntCurveSurface_TransitionOnCurve.hxx>
35
36 void TopClass_Classifier3d::Compare(const TopoDS_Face&        Face,
37                                     const TopAbs_Orientation) {  
38   if(!isSet) { 
39 #ifdef OCCT_DEBUG
40     cout<<" Call to TopClass_Classifier3d::Compare  without a Reset ! ";
41 #endif
42     return;
43   }
44
45   hasIntersect = Standard_False;
46   myIntersector.Perform(myLin,myParam,myTolerance,Face);
47   if(myIntersector.IsDone()) { 
48     if(myIntersector.HasAPoint()) { 
49       hasIntersect = Standard_True;
50       if(myIntersector.WParameter() < myParam) { 
51         myParam = myIntersector.WParameter();
52         myFace  = myIntersector.Face(); 
53         if(Abs(myParam)<=myTolerance) { 
54           //-- #########################################
55 #ifdef OCCT_DEBUG
56           cout<<" myParam = "<<myParam<<" ds TopClass_Classifier3d.gxx  "<<endl;
57 #endif
58           //-- #########################################
59           myState = TopAbs_ON;
60         }
61         else { 
62           //-- The intersection point between the line and a face F of the solid 
63           //-- is in the face F or On a boundary of the face 
64           if(myIntersector.Transition() == IntCurveSurface_Out) { 
65             //-- The line is going from inside the solid to outside the solid.
66             myState = TopAbs_IN;
67           }
68           else if(myIntersector.Transition() == IntCurveSurface_In) { 
69             myState = TopAbs_OUT;
70           }
71 #ifdef OCCT_DEBUG
72     else { 
73             cout<<" -------- Probleme ds TopClass_Classifier3d.gxx "<<endl;
74     }
75 #endif
76         }
77       }
78       else { 
79         //-- No point has been found by the myIntersector.
80         //-- Or a Point has been found with a greater parameter.
81       }
82     } //-- myIntersector Has a point 
83     else { 
84       //-- The myIntersector failed.
85     } 
86   } //-- Face has not been rejected
87 }