mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
Extended math lib
This commit is contained in:
parent
56e74ad19e
commit
5adfdfa8f9
@ -135,6 +135,11 @@ Dcm::Dcm(const Dcm &right) :
|
||||
{
|
||||
}
|
||||
|
||||
Dcm::Dcm(const Matrix &right) :
|
||||
Matrix(right)
|
||||
{
|
||||
}
|
||||
|
||||
Dcm::~Dcm()
|
||||
{
|
||||
}
|
||||
|
||||
@ -96,6 +96,11 @@ public:
|
||||
*/
|
||||
Dcm(const Dcm &right);
|
||||
|
||||
/**
|
||||
* copy ctor (deep)
|
||||
*/
|
||||
Dcm(const Matrix &right);
|
||||
|
||||
/**
|
||||
* dtor
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user