mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-30 13:05:50 +03:00
Macros ending on "DEB" are replaced by OCCT_DEBUG across OCCT code; new macros described in documentation. Macros starting with DEB are changed to start with "OCCT_DEBUG_". Some code cleaned.
88 lines
2.9 KiB
Plaintext
88 lines
2.9 KiB
Plaintext
// 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,
|
|
const Standard_Real Tol) {
|
|
myLin = L;
|
|
myParam = RealLast();
|
|
myTolerance = Tol;
|
|
myState = TopAbs_UNKNOWN;
|
|
isSet = Standard_True;
|
|
}
|
|
//======================================================================
|
|
#include <IntCurveSurface_IntersectionPoint.hxx>
|
|
#include <IntCurveSurface_TransitionOnCurve.hxx>
|
|
|
|
void TopClass_Classifier3d::Compare(const TopoDS_Face& Face,
|
|
const TopAbs_Orientation) {
|
|
if(!isSet) {
|
|
#ifdef OCCT_DEBUG
|
|
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
|
|
cout<<" myParam = "<<myParam<<" ds TopClass_Classifier3d.gxx "<<endl;
|
|
#endif
|
|
//-- #########################################
|
|
myState = TopAbs_ON;
|
|
}
|
|
else {
|
|
//-- The intersection point between the line and a face F of the solid
|
|
//-- is in the face F or On a boundary of the face
|
|
if(myIntersector.Transition() == IntCurveSurface_Out) {
|
|
//-- The line is going from inside the solid to outside the solid.
|
|
myState = TopAbs_IN;
|
|
}
|
|
else if(myIntersector.Transition() == IntCurveSurface_In) {
|
|
myState = TopAbs_OUT;
|
|
}
|
|
#ifdef OCCT_DEBUG
|
|
else {
|
|
cout<<" -------- Probleme ds TopClass_Classifier3d.gxx "<<endl;
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
else {
|
|
//-- No point has been found by the myIntersector.
|
|
//-- Or a Point has been found with a greater parameter.
|
|
}
|
|
} //-- myIntersector Has a point
|
|
else {
|
|
//-- The myIntersector failed.
|
|
}
|
|
} //-- Face has not been rejected
|
|
}
|