3 #include <SimoxUtility/math/convert/deg_to_rad.h>
15 RotateXDegrees::relativeTarget(
const Base::SpecializedMainInput& in)
17 const float rotation = simox::math::deg_to_rad(in.parameters.rotationDegrees);
18 return Eigen::Isometry3f(Eigen::AngleAxisf(rotation, Eigen::Vector3f::UnitZ()));
24 ParamType defaultParams;
25 defaultParams.rotationDegrees = 0;
29 .description =
"Rotate around the Z-axis by a specified degree value",
30 .rootProfileDefaults = defaultParams.toAron(),
32 .parametersType = ParamType::ToAronType()};