mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0027358: ShapeAnalysis_Curve::GetSamplePoints iteration logic isn't robust
The iterating logic in ShapeAnalysis_Curve::GetSamplePoints() is made more robust: instead of iterative incrementing parameter by adding step, parameter at each point is calculated independently from index. This avoids possible accumulation of numeric errors, and ensures that generated points are equally spaced and their quantity is respected in all cases.
This commit is contained in:
parent
2bc6f71528
commit
359cdde7ed
@ -1070,9 +1070,8 @@ Standard_Boolean ShapeAnalysis_Curve::GetSamplePoints (const Handle(Geom_Curve)&
|
||||
|
||||
GeomAdaptor_Curve GAC(curve);
|
||||
Standard_Real step = ( last - first ) / (Standard_Real)( nbp - 1 );
|
||||
Standard_Real par = first, stop = last - 0.5 * step;
|
||||
for ( ; par < stop; par += step )
|
||||
seq.Append(GAC.Value(par));
|
||||
for (Standard_Integer i = 0; i < nbp - 1; ++i)
|
||||
seq.Append(GAC.Value(first + step * i));
|
||||
seq.Append(GAC.Value(last));
|
||||
return Standard_True;
|
||||
}
|
||||
@ -1093,9 +1092,8 @@ Standard_Boolean ShapeAnalysis_Curve::GetSamplePoints (const Handle(Geom2d_Curve
|
||||
//-- Attention aux bsplines rationnelles de degree 3. (bouts de cercles entre autres)
|
||||
if (nbs > 2) nbs*=4;
|
||||
Standard_Real step = ( last - first ) / (Standard_Real)( nbs - 1 );
|
||||
Standard_Real par = first, stop = last - 0.5 * step;
|
||||
for ( ; par < stop; par += step )
|
||||
seq.Append(C.Value(par));
|
||||
for (Standard_Integer i = 0; i < nbs - 1; ++i)
|
||||
seq.Append(C.Value(first + step * i));
|
||||
seq.Append(C.Value(last));
|
||||
return Standard_True;
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user