// 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), myParam(0.0), myTolerance(0.0), myState(TopAbs_UNKNOWN), hasIntersect(Standard_False) { } //====================================================================== void TopClass_Classifier3d::Reset(const gp_Lin& L, const Standard_Real, const Standard_Real Tol) { myLin = L; myParam = RealLast(); myTolerance = Tol; myState = TopAbs_UNKNOWN; isSet = Standard_True; } //====================================================================== #include #include void TopClass_Classifier3d::Compare(const TopoDS_Face& Face, const TopAbs_Orientation) { if(!isSet) { #ifdef OCCT_DEBUG std::cout<<" Call to TopClass_Classifier3d::Compare without a Reset ! "; #endif return; } hasIntersect = Standard_False; myIntersector.Perform(myLin,myParam,myTolerance,Face); if(myIntersector.IsDone()) { if(myIntersector.HasAPoint()) { hasIntersect = Standard_True; if(myIntersector.WParameter() < myParam) { myParam = myIntersector.WParameter(); myFace = myIntersector.Face(); if(Abs(myParam)<=myTolerance) { //-- ######################################### #ifdef OCCT_DEBUG std::cout<<" myParam = "<