Big renaming:

start ---> head
  end   ---> tail
Much frustration with sed syntax. Need to learn perl some day.
This commit is contained in:
Benoit Jacob
2010-01-04 21:24:43 -05:00
parent 78ba523d30
commit 39ac57fa6d
43 changed files with 158 additions and 158 deletions

View File

@@ -106,7 +106,7 @@ template<typename _Scalar> class AlignedVector3
{
inline static void run(AlignedVector3& dest, const XprType& src)
{
dest.m_coeffs.template start<3>() = src;
dest.m_coeffs.template head<3>() = src;
dest.m_coeffs.w() = Scalar(0);
}
};
@@ -190,7 +190,7 @@ template<typename _Scalar> class AlignedVector3
template<typename Derived>
inline bool isApprox(const MatrixBase<Derived>& other, RealScalar eps=dummy_precision<Scalar>()) const
{
return m_coeffs.template start<3>().isApprox(other,eps);
return m_coeffs.template head<3>().isApprox(other,eps);
}
};