source typo fixes pt2 (only on py3 merged code)

This commit is contained in:
Kunda
2017-02-27 19:18:00 -05:00
committed by wmayer
parent 06b10a4061
commit 0485edd560
33 changed files with 169 additions and 169 deletions

View File

@@ -56,7 +56,7 @@ path_simulate::path_simulate(const std::vector<Handle_Geom_BSplineCurve> &BSplin
m_it1 = m_BSplineTop.begin();
m_it2 = m_BSplineBottom.begin();
//Initalise some vars
//Initialise some vars
gp_Pnt p(0,0,0);
gp_Pnt q(0,0,0);
@@ -117,7 +117,7 @@ double path_simulate::GetLength(GeomAdaptor_Curve& curve, const Standard_Real st
if ( eParam > lastParameter )
{
//get the first part of the lenght
//get the first part of the length
Standard_Real l1 = GetLength(curve,firstParameter,eParam-lastParameter);
Standard_Real l2 = GetLength(curve,sParam,lastParameter);
return l1 + l2;