6#include "../result.hpp"
49 struct Loggable<datatypes::RotationAxisAngle> {
50 static constexpr std::string_view ComponentType =
"rerun.datatypes.RotationAxisAngle";
53 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
56 static Result<std::shared_ptr<arrow::Array>> to_arrow(
57 const datatypes::RotationAxisAngle* instances,
size_t num_instances
62 arrow::StructBuilder* builder,
const datatypes::RotationAxisAngle* elements,
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:99
All built-in datatypes. See Types in the Rerun manual.
Definition rerun.hpp:82
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Datatype: Angle in radians.
Definition angle.hpp:24
Datatype: 3D rotation represented by a rotation around a given axis.
Definition rotation_axis_angle.hpp:21
rerun::datatypes::Vec3D axis
Axis to rotate around.
Definition rotation_axis_angle.hpp:28
rerun::datatypes::Angle angle
How much to rotate around the axis.
Definition rotation_axis_angle.hpp:31
Datatype: A vector in 3D space.
Definition vec3d.hpp:20