[TD]fix #9471 - prevent impossible centerline

This commit is contained in:
wandererfan
2023-05-06 19:50:05 -04:00
committed by WandererFan
parent c868940cf1
commit 4ccb566b7d
5 changed files with 103 additions and 57 deletions

View File

@@ -272,7 +272,7 @@ bool GeometryMatcher::compareEllipseArcs(TopoDS_Edge &edge1, TopoDS_Edge &edge2)
// not sure how successful this would be. For now, we just say it doesn't match
bool GeometryMatcher::compareDifferent(TopoDS_Edge &edge1, TopoDS_Edge &edge2)
{
Base::Console().Message("GM::compareDifferent()\n");
// Base::Console().Message("GM::compareDifferent()\n");
BRepAdaptor_Curve adapt1(edge1);
BRepAdaptor_Curve adapt2(edge2);
return false;