mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0030903: Bug in IntCurvesFace_ShapeIntersector
When classifying the intersection point check the ON status in 3D - compare the 3D distances with 3D tolerance.
This commit is contained in:
parent
87018b452a
commit
3dd193aa6d
@ -42,7 +42,7 @@
|
||||
#include <TopoDS_Face.hxx>
|
||||
#include <BRep_Tool.hxx>
|
||||
#include <TopoDS.hxx>
|
||||
#include <Geom2dAPI_ProjectPointOnCurve.hxx>
|
||||
#include <GeomAPI_ProjectPointOnCurve.hxx>
|
||||
//
|
||||
static void ComputeSamplePars(const Handle(Adaptor3d_HSurface)& Hsurface,
|
||||
const Standard_Integer nbsu,
|
||||
@ -259,16 +259,12 @@ void IntCurvesFace_Intersector::InternalCall(const IntCurveSurface_HInter &HICS,
|
||||
for(; anExp.More(); anExp.Next())
|
||||
{
|
||||
TopoDS_Edge anE = TopoDS::Edge(anExp.Current());
|
||||
Standard_Real curtol = BRep_Tool::Tolerance(anE);
|
||||
Standard_Real tol2d = Max(Hsurface->UResolution(curtol), Hsurface->VResolution(curtol));
|
||||
tol2d = Max(tol2d, Tol);
|
||||
Standard_Real f, l;
|
||||
Handle(Geom2d_Curve) aPC = BRep_Tool::CurveOnSurface(anE, face, f, l);
|
||||
Geom2dAPI_ProjectPointOnCurve aProj(Puv, aPC, f, l);
|
||||
if(aProj.NbPoints() > 0)
|
||||
Handle(Geom_Curve) aPC = BRep_Tool::Curve (anE, f, l);
|
||||
GeomAPI_ProjectPointOnCurve aProj (HICSPointindex.Pnt(), aPC, f, l);
|
||||
if (aProj.NbPoints() > 0)
|
||||
{
|
||||
Standard_Real d = aProj.LowerDistance();
|
||||
if(d <= tol2d)
|
||||
if (aProj.LowerDistance() <= maxtol3d)
|
||||
{
|
||||
//Nearest edge is found, state is really ON
|
||||
currentstate = TopAbs_ON;
|
||||
|
12
tests/bugs/modalg_7/bug30903
Normal file
12
tests/bugs/modalg_7/bug30903
Normal file
@ -0,0 +1,12 @@
|
||||
puts "======================================================="
|
||||
puts "0030903: Bug in IntCurvesFace_ShapeIntersector"
|
||||
puts "======================================================="
|
||||
puts ""
|
||||
|
||||
pload QAcommands
|
||||
|
||||
restore [locate_data_file bug30903_shell.brep] s
|
||||
|
||||
if {![regexp "status = -1" [OCC17424 s 132.319855705359 32.8066746022481 -61.4897311243957 0 -0.634115797726033 -0.77323809727294 -1]]} {
|
||||
puts "Error: there must be no intersection point"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user