#pragma once /* Copyright (c) 2016-2018 Stanislaw Halik * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. */ #include "export.hpp" #include "simple-mat.hpp" namespace euler { template using dmat = Mat; using dvec3 = Mat; using rmat = dmat<3, 3>; using Pose_ = dmat<3, 1>; rmat OTR_COMPAT_EXPORT euler_to_rmat(const Pose_& input); Pose_ OTR_COMPAT_EXPORT rmat_to_euler(const rmat& R); } // end ns euler