Misc. typos

Found via `codespell`
This commit is contained in:
luz.paz
2018-04-23 13:21:12 -04:00
committed by Yorik van Havre
parent 8c0b574661
commit 505488c4f9
83 changed files with 112 additions and 112 deletions

View File

@@ -153,7 +153,7 @@ double Routines::CalcAngle(Base::Vector3f a,Base::Vector3f b,Base::Vector3f c)
/*! \brief Algorithim A2.1 from NURBS Book Page 68*/
/*! \brief Algorithm A2.1 from NURBS Book Page 68*/
int Routines::FindSpan(int n, int p, double u, std::vector<double> KnotSequence)
{
if (u == KnotSequence[n+1])
@@ -178,7 +178,7 @@ int Routines::FindSpan(int n, int p, double u, std::vector<double> KnotSequence)
}
/*! \brief Algorithim A2.4 from NURBS Book page 70*/
/*! \brief Algorithm A2.4 from NURBS Book page 70*/
void Routines::Basisfun(int i, double u, int p, std::vector<double> &KnotSequence, std::vector<double> &output)
{
double temp, saved;
@@ -199,7 +199,7 @@ void Routines::Basisfun(int i, double u, int p, std::vector<double> &KnotSequenc
output[j] = saved;
}
}
/*! \brief Algorithim A2.3 from NURBS Book Page 72 */
/*! \brief Algorithm A2.3 from NURBS Book Page 72 */
void Routines::DersBasisFuns(int i, double u, int p, int n,
std::vector<double> &KnotSequence, std::vector< std::vector<double> > &Derivate)
{