mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
Fix outer-stride.
This commit is contained in:
parent
5c366fe1d7
commit
091d373ee9
@ -61,7 +61,7 @@ template<typename _Scalar> class AlignedVector3
|
||||
Scalar* data() { return m_coeffs.data(); }
|
||||
const Scalar* data() const { return m_coeffs.data(); }
|
||||
Index innerStride() const { return 1; }
|
||||
Index outerStride() const { return m_coeffs.outerStride(); }
|
||||
Index outerStride() const { return 3; }
|
||||
|
||||
inline const Scalar& coeff(Index row, Index col) const
|
||||
{ return m_coeffs.coeff(row, col); }
|
||||
|
Loading…
Reference in New Issue
Block a user