mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
add data() methods to Transform
This commit is contained in:
@@ -173,6 +173,9 @@ public:
|
|||||||
const MatrixType inverse() const
|
const MatrixType inverse() const
|
||||||
{ return m_matrix.inverse(); }
|
{ return m_matrix.inverse(); }
|
||||||
|
|
||||||
|
const Scalar* data() const { return m_matrix.data(); }
|
||||||
|
Scalar* data() { return m_matrix.data(); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user