Skip to content

Commit

Permalink
fixed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
amock committed Feb 22, 2024
1 parent ec860fb commit b4ac61f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rmagine_core/include/rmagine/util/prints.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ inline std::ostream& operator<<(std::ostream& os, const rmagine::Matrix_<DataT,
template<typename DataT>
inline std::ostream& operator<<(std::ostream& os, const rmagine::Transform_<DataT>& T)
{
rmagine::EulerAngles e;
rmagine::EulerAngles_<DataT> e;
e.set(T.R);
os << "T[" << T.t << ", " << e << "]";
return os;
Expand Down

0 comments on commit b4ac61f

Please sign in to comment.