Standard_Real tol = Max(0.01*aDefl2, 1.e-9);
Standard_Integer l;
- // Calculations of B-spline values will be made using adaptor,
- // because it caches the data for performance
- GeomAdaptor_Surface aBSplAdaptor(aBS);
-
anUFlg(1) = Standard_True;
anUFlg(nbsu) = Standard_True;
//myNbSamplesU = 2;
}
t2 = anUPars(j);
-// gp_Pnt p1 = aBS->Value(t2, t1);
- gp_Pnt p1 = aBSplAdaptor.Value(t2, t1);
+ gp_Pnt p1 = myS->Value(t2, t1);
for(k = j+2; k <= nbsu; ++k) {
t2 = anUPars(k);
-// gp_Pnt p2 = aBS->Value(t2, t1);
- gp_Pnt p2 = aBSplAdaptor.Value(t2, t1);
+ gp_Pnt p2 = myS->Value(t2, t1);
//gce_MakeLin MkLin(p1, p2);
//const gp_Lin& lin = MkLin.Value();
break;
}
-// gp_Pnt pp = aBS->Value(anUPars(l), t1);
- gp_Pnt pp = aBSplAdaptor.Value(anUPars(l), t1);
+ gp_Pnt pp = myS->Value(anUPars(l), t1);
Standard_Real d = lin.SquareDistance(pp);
if(d <= aDefl2) continue;
}
t2 = aVPars(j);
-// gp_Pnt p1 = aBS->Value(t1, t2);
- gp_Pnt p1 = aBSplAdaptor.Value(t1, t2);
+ gp_Pnt p1 = myS->Value(t1, t2);
for(k = j+2; k <= nbsv; ++k) {
t2 = aVPars(k);
-// gp_Pnt p2 = aBS->Value(t1, t2);
- gp_Pnt p2 = aBSplAdaptor.Value(t1, t2);
+ gp_Pnt p2 = myS->Value(t1, t2);
if(p1.SquareDistance(p2) <= tol) continue;
//gce_MakeLin MkLin(p1, p2);
break;
}
-// gp_Pnt pp = aBS->Value(t1, aVPars(l));
- gp_Pnt pp = aBSplAdaptor.Value(t1, aVPars(l));
+ gp_Pnt pp = myS->Value(t1, aVPars(l));
Standard_Real d = lin.SquareDistance(pp);
if(d <= aDefl2) continue;
// in TangExtendToConstraint; Continuity can be equal to 0
#include <BSplCLib.hxx>
+#include <ElCLib.hxx>
#include <gp_Pnt.hxx>
#include <gp_Pnt2d.hxx>
#include <gp_Vec.hxx>
}
Standard_Integer Last1 = Last - 1;
NewU = U;
- if (IsPeriodic) {
- Standard_Real Period = ULast - UFirst;
-
- while (NewU > ULast )
- NewU -= Period;
-
- while (NewU < UFirst)
- NewU += Period;
- }
+ if (IsPeriodic && (NewU < UFirst || NewU > ULast))
+ NewU = ElCLib::InPeriod(NewU, UFirst, ULast);
BSplCLib::Hunt (Knots, NewU, KnotIndex);
//! Perform the evaluation of the Taylor expansion
//! of the Bspline normalized between 0 and 1.
//! Structure of result optimized for BSplCLib_Cache.
- Standard_EXPORT static void BuildCache (const Standard_Real theParameter, const Standard_Real theSpanDomain, const Standard_Boolean thePeriodicFlag, const Standard_Integer theDegree, const TColStd_Array1OfReal& theFlatKnots, const TColgp_Array1OfPnt& thePoles, const TColStd_Array1OfReal* theWeights, TColStd_Array2OfReal& theCacheArray);
+ Standard_EXPORT static void BuildCache (const Standard_Real theParameter, const Standard_Real theSpanDomain, const Standard_Boolean thePeriodicFlag, const Standard_Integer theDegree, const Standard_Integer theSpanIndex, const TColStd_Array1OfReal& theFlatKnots, const TColgp_Array1OfPnt& thePoles, const TColStd_Array1OfReal* theWeights, TColStd_Array2OfReal& theCacheArray);
//! Perform the evaluation of the Taylor expansion
//! of the Bspline normalized between 0 and 1.
//! Structure of result optimized for BSplCLib_Cache.
- Standard_EXPORT static void BuildCache (const Standard_Real theParameter, const Standard_Real theSpanDomain, const Standard_Boolean thePeriodicFlag, const Standard_Integer theDegree, const TColStd_Array1OfReal& theFlatKnots, const TColgp_Array1OfPnt2d& thePoles, const TColStd_Array1OfReal* theWeights, TColStd_Array2OfReal& theCacheArray);
+ Standard_EXPORT static void BuildCache (const Standard_Real theParameter, const Standard_Real theSpanDomain, const Standard_Boolean thePeriodicFlag, const Standard_Integer theDegree, const Standard_Integer theSpanIndex, const TColStd_Array1OfReal& theFlatKnots, const TColgp_Array1OfPnt2d& thePoles, const TColStd_Array1OfReal* theWeights, TColStd_Array2OfReal& theCacheArray);
static void PolesCoefficients (const TColgp_Array1OfPnt2d& Poles, TColgp_Array1OfPnt2d& CachePoles);
// Calculate new cache data
BSplCLib::BuildCache(mySpanStart, mySpanLength, thePeriodic, theDegree,
- theFlatKnots, thePoles2d, theWeights,
+ mySpanIndex, theFlatKnots, thePoles2d, theWeights,
myPolesWeights->ChangeArray2());
}
// Calculate new cache data
BSplCLib::BuildCache(mySpanStart, mySpanLength, thePeriodic, theDegree,
- theFlatKnots, thePoles, theWeights,
+ mySpanIndex, theFlatKnots, thePoles, theWeights,
myPolesWeights->ChangeArray2());
}
const Standard_Real theSpanDomain,
const Standard_Boolean thePeriodicFlag,
const Standard_Integer theDegree,
+ const Standard_Integer theSpanIndex,
const TColStd_Array1OfReal& theFlatKnots,
const Array1OfPoints& thePoles,
const TColStd_Array1OfReal* theWeights,
TColStd_Array2OfReal& theCacheArray)
{
Standard_Real aParam = theParameter;
- Standard_Integer anIndex = 0;
+ Standard_Integer anIndex = theSpanIndex;
Standard_Integer aDimension;
Standard_Boolean isRational;