mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0023703: Projection algorithm produces incomplete 2D-Curve
Change compare algorithm. Adding test case for this fix
This commit is contained in:
parent
a1bd71b4a8
commit
fa6cd9152f
@ -661,22 +661,27 @@ static Standard_Boolean InitialPoint(const gp_Pnt& Point,
|
|||||||
// as initial point for aPrjPS, so we switch them
|
// as initial point for aPrjPS, so we switch them
|
||||||
gp_Vec2d D;
|
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);
|
d1(t, U, V, D, myCurve, mySurface);
|
||||||
if (D.X() < 0) U = Usup;
|
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);
|
d1(t, U, V, D, myCurve, mySurface);
|
||||||
if (D.X() > 0) U = Uinf;
|
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);
|
d1(t, U, V, D, myCurve, mySurface);
|
||||||
if (D.Y() < 0) V = Vsup;
|
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);
|
d1(t, U, V, D, myCurve, mySurface);
|
||||||
if (D.Y() > 0) V = Vinf;
|
if (D.Y() > 0) V = Vinf;
|
||||||
|
20
tests/bugs/moddata/bug23703
Executable file
20
tests/bugs/moddata/bug23703
Executable file
@ -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
|
Loading…
x
Reference in New Issue
Block a user