1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-18 14:27:39 +03:00

0025763: SSP sample is unable to build the proper surface on the given cloud of points

Some improvements to work with periodic splines
This commit is contained in:
anv
2015-03-23 11:23:49 +03:00
committed by bugmaster
parent d09dda0929
commit ecbdb1b027
4 changed files with 14 additions and 7 deletions

View File

@@ -430,9 +430,10 @@ Standard_Integer BSplCLib::KnotSequenceLength
void BSplCLib::KnotSequence
(const TColStd_Array1OfReal& Knots,
const TColStd_Array1OfInteger& Mults,
TColStd_Array1OfReal& KnotSeq)
TColStd_Array1OfReal& KnotSeq,
const Standard_Boolean Periodic)
{
BSplCLib::KnotSequence(Knots,Mults,0,Standard_False,KnotSeq);
BSplCLib::KnotSequence(Knots,Mults,0,Periodic,KnotSeq);
}
//=======================================================================