mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-30 17:40:05 +08:00
add data() methods to Transform
This commit is contained in:
parent
b815b23e09
commit
6b591d06c5
@ -173,6 +173,9 @@ public:
|
||||
const MatrixType inverse() const
|
||||
{ return m_matrix.inverse(); }
|
||||
|
||||
const Scalar* data() const { return m_matrix.data(); }
|
||||
Scalar* data() { return m_matrix.data(); }
|
||||
|
||||
protected:
|
||||
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user