mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-27 16:10:34 +08:00
matrix: pull explicit constructors
This commit is contained in:
committed by
Daniel Agar
parent
474c406147
commit
c8f3f07ff7
@@ -56,7 +56,7 @@
|
||||
|
||||
#include "navigator.h"
|
||||
|
||||
using matrix::wrap_pi;
|
||||
using namespace matrix;
|
||||
|
||||
constexpr float FollowTarget::_follow_position_matricies[4][9];
|
||||
|
||||
@@ -89,7 +89,7 @@ void FollowTarget::on_activation()
|
||||
_follow_target_position = FOLLOW_FROM_BEHIND;
|
||||
}
|
||||
|
||||
_rot_matrix = (_follow_position_matricies[_follow_target_position]);
|
||||
_rot_matrix = Dcmf(_follow_position_matricies[_follow_target_position]);
|
||||
}
|
||||
|
||||
void FollowTarget::on_active()
|
||||
|
||||
Reference in New Issue
Block a user