mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
14 lines
169 B
C++
14 lines
169 B
C++
#include "Dcm.hpp"
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
|
|
using namespace matrix;
|
|
|
|
int main()
|
|
{
|
|
Dcmf dcm;
|
|
Quatf q = Quatf(dcm);
|
|
Eulerf e = Eulerf(dcm);
|
|
return 0;
|
|
}
|