diff --git a/src/ProjLib/ProjLib_CompProjectedCurve.cxx b/src/ProjLib/ProjLib_CompProjectedCurve.cxx index 944a37e6c0..5d32f2514a 100755 --- a/src/ProjLib/ProjLib_CompProjectedCurve.cxx +++ b/src/ProjLib/ProjLib_CompProjectedCurve.cxx @@ -661,22 +661,27 @@ static Standard_Boolean InitialPoint(const gp_Pnt& Point, // as initial point for aPrjPS, so we switch them gp_Vec2d D; - if(U == Uinf && mySurface->IsUPeriodic()) + if((Abs(U - Uinf) < mySurface->UResolution(Precision::PConfusion())) && + mySurface->IsUPeriodic()) { d1(t, U, V, D, myCurve, mySurface); if (D.X() < 0) U = Usup; } - else if(U == Usup && mySurface->IsUPeriodic()) - { + else if((Abs(U - Usup) < mySurface->UResolution(Precision::PConfusion())) && + mySurface->IsUPeriodic()) + { d1(t, U, V, D, myCurve, mySurface); if (D.X() > 0) U = Uinf; } - if(V == Vinf && mySurface->IsVPeriodic()) + + if((Abs(V - Vinf) < mySurface->VResolution(Precision::PConfusion())) && + mySurface->IsVPeriodic()) { d1(t, U, V, D, myCurve, mySurface); if (D.Y() < 0) V = Vsup; } - else if(V == Vsup && mySurface->IsVPeriodic()) + else if((Abs(V - Vsup) <= mySurface->VResolution(Precision::PConfusion())) && + mySurface->IsVPeriodic()) { d1(t, U, V, D, myCurve, mySurface); if (D.Y() > 0) V = Vinf; diff --git a/tests/bugs/moddata/bug23703 b/tests/bugs/moddata/bug23703 new file mode 100755 index 0000000000..098d07b1c8 --- /dev/null +++ b/tests/bugs/moddata/bug23703 @@ -0,0 +1,20 @@ +puts "========" +puts "CR23703" +puts "========" +puts "" +#################################################################### +## Projection algorithm produces incomplete 2D-Curve +#################################################################### + +restore [locate_data_file bug23703_c2x.brep] c +restore [locate_data_file bug23703_s1.brep] s + +mkface f s +pcurve f + +project c2d c s + +v2d +2dfit + +set only_screen_axo 1