-// File: TopClass_Classifier3d.gxx
-// Created: Wed Mar 30 09:54:56 1994
-// Author: Laurent BUCHARD
-// <lbr@fuegox>
-
-
+// Created on: 1994-03-30
+// Created by: Laurent BUCHARD
+// Copyright (c) 1994-1999 Matra Datavision
+// Copyright (c) 1999-2014 OPEN CASCADE SAS
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
//======================================================================
TopClass_Classifier3d::TopClass_Classifier3d() : isSet(Standard_False)
//======================================================================
void TopClass_Classifier3d::Reset(const gp_Lin& L,
- const Standard_Real Param,
+ const Standard_Real,
const Standard_Real Tol) {
myLin = L;
myParam = RealLast();
#include <IntCurveSurface_TransitionOnCurve.hxx>
void TopClass_Classifier3d::Compare(const TopoDS_Face& Face,
- const TopAbs_Orientation Orientation) {
+ const TopAbs_Orientation) {
if(!isSet) {
+#ifdef OCCT_DEBUG
cout<<" Call to TopClass_Classifier3d::Compare without a Reset ! ";
+#endif
return;
}
myFace = myIntersector.Face();
if(Abs(myParam)<=myTolerance) {
//-- #########################################
+#ifdef OCCT_DEBUG
cout<<" myParam = "<<myParam<<" ds TopClass_Classifier3d.gxx "<<endl;
+#endif
//-- #########################################
myState = TopAbs_ON;
}
else if(myIntersector.Transition() == IntCurveSurface_In) {
myState = TopAbs_OUT;
}
- else {
+#ifdef OCCT_DEBUG
+ else {
cout<<" -------- Probleme ds TopClass_Classifier3d.gxx "<<endl;
- }
+ }
+#endif
}
}
else {