mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Modeling - Enhance intersection handling for closed curves in IntPatch_Intersection #298
This commit is contained in:
parent
cde7baba0d
commit
8caf5157dd
@ -195,8 +195,11 @@ void IntPatch_Intersection::Perform(const Handle(Adaptor3d_Surface)& S1,
|
|||||||
aProjectedCurve.FirstParameter(),
|
aProjectedCurve.FirstParameter(),
|
||||||
aProjectedCurve.LastParameter());
|
aProjectedCurve.LastParameter());
|
||||||
Geom2dInt_GInter Intersector(AC, Precision::Confusion(), Precision::Confusion());
|
Geom2dInt_GInter Intersector(AC, Precision::Confusion(), Precision::Confusion());
|
||||||
if (Intersector.IsDone() && Intersector.IsEmpty())
|
if (Intersector.IsDone()
|
||||||
|
&& (Intersector.IsEmpty() || (AC.IsClosed() && Intersector.NbPoints() == 1)))
|
||||||
|
{
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Standard_FALLTHROUGH
|
Standard_FALLTHROUGH
|
||||||
default: {
|
default: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user