mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-17 23:53:20 +08:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
82 lines
2.8 KiB
Plaintext
82 lines
2.8 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) {
|
|
cout<<" Call to TopClass_Classifier3d::Compare without a Reset ! ";
|
|
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) {
|
|
//-- #########################################
|
|
cout<<" myParam = "<<myParam<<" ds TopClass_Classifier3d.gxx "<<endl;
|
|
//-- #########################################
|
|
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;
|
|
}
|
|
else {
|
|
cout<<" -------- Probleme ds TopClass_Classifier3d.gxx "<<endl;
|
|
}
|
|
}
|
|
}
|
|
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
|
|
}
|