mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0026278: Canonical recognition from time to time raises exception on the attached shape
Corrected array boundaries to avoid Standard_OutOfRange exception in BSplSLib and BSplSLib_Cache on the given shapes. Code formatting has been corrected for ShapeFix_Edge.
This commit is contained in:
parent
d0820f2e56
commit
283b833c8e
@ -148,8 +148,20 @@ void BSplSLib_Cache::BuildCache(const Standard_Real& theParameterU,
|
|||||||
thePeriodicU, mySpanIndex[0], aNewParamU);
|
thePeriodicU, mySpanIndex[0], aNewParamU);
|
||||||
BSplCLib::LocateParameter(theDegreeV, theFlatKnotsV, BSplCLib::NoMults(), aNewParamV,
|
BSplCLib::LocateParameter(theDegreeV, theFlatKnotsV, BSplCLib::NoMults(), aNewParamV,
|
||||||
thePeriodicV, mySpanIndex[1], aNewParamV);
|
thePeriodicV, mySpanIndex[1], aNewParamV);
|
||||||
|
|
||||||
|
// Protection against Out of Range exception.
|
||||||
|
if (mySpanIndex[0] >= theFlatKnotsU.Length()) {
|
||||||
|
mySpanIndex[0] = theFlatKnotsU.Length() - 1;
|
||||||
|
}
|
||||||
|
|
||||||
mySpanLength[0] = (theFlatKnotsU.Value(mySpanIndex[0] + 1) - theFlatKnotsU.Value(mySpanIndex[0])) * 0.5;
|
mySpanLength[0] = (theFlatKnotsU.Value(mySpanIndex[0] + 1) - theFlatKnotsU.Value(mySpanIndex[0])) * 0.5;
|
||||||
mySpanStart[0] = theFlatKnotsU.Value(mySpanIndex[0]) + mySpanLength[0];
|
mySpanStart[0] = theFlatKnotsU.Value(mySpanIndex[0]) + mySpanLength[0];
|
||||||
|
|
||||||
|
// Protection against Out of Range exception.
|
||||||
|
if (mySpanIndex[1] >= theFlatKnotsV.Length()) {
|
||||||
|
mySpanIndex[1] = theFlatKnotsV.Length() - 1;
|
||||||
|
}
|
||||||
|
|
||||||
mySpanLength[1] = (theFlatKnotsV.Value(mySpanIndex[1] + 1) - theFlatKnotsV.Value(mySpanIndex[1])) * 0.5;
|
mySpanLength[1] = (theFlatKnotsV.Value(mySpanIndex[1] + 1) - theFlatKnotsV.Value(mySpanIndex[1])) * 0.5;
|
||||||
mySpanStart[1] = theFlatKnotsV.Value(mySpanIndex[1]) + mySpanLength[1];
|
mySpanStart[1] = theFlatKnotsV.Value(mySpanIndex[1]) + mySpanLength[1];
|
||||||
mySpanIndexMax[0] = theFlatKnotsU.Length() - 1 - theDegreeU;
|
mySpanIndexMax[0] = theFlatKnotsU.Length() - 1 - theDegreeU;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user