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