6#include "../result.hpp"
48 struct Loggable<datatypes::RotationAxisAngle> {
49 static constexpr const char Name[] =
"rerun.datatypes.RotationAxisAngle";
52 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
56 arrow::StructBuilder* builder,
const datatypes::RotationAxisAngle* elements,
61 static Result<std::shared_ptr<arrow::Array>> to_arrow(
62 const datatypes::RotationAxisAngle* instances,
size_t num_instances
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:87
All built-in datatypes. See Types in the Rerun manual.
Definition rerun.hpp:72
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:20
Datatype: Angle in either radians or degrees.
Definition angle.hpp:55
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:27
rerun::datatypes::Angle angle
How much to rotate around the axis.
Definition rotation_axis_angle.hpp:30
Datatype: A vector in 3D space.
Definition vec3d.hpp:20