You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kindr team
my project need to move this library to visual studio on windows. but we meet a problem here rotation.hpp line 106-118:
template
inline static Vector_ rotate(const RotationBase<Rotation_>& rotation, const Vector_& vector){
return static_cast<Vector_>(rotation.derived().rotate(vector.toImplementation()));
}
compiler reports that the vector do not have toImplementation() method.
is that any good way to solve this issue? thanks.
The text was updated successfully, but these errors were encountered:
kindr team
my project need to move this library to visual studio on windows. but we meet a problem here rotation.hpp line 106-118:
template
inline static Vector_ rotate(const RotationBase<Rotation_>& rotation, const Vector_& vector){
return static_cast<Vector_>(rotation.derived().rotate(vector.toImplementation()));
}
compiler reports that the vector do not have toImplementation() method.
is that any good way to solve this issue? thanks.
The text was updated successfully, but these errors were encountered: