mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Big renaming:
start ---> head end ---> tail Much frustration with sed syntax. Need to learn perl some day.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user