Rerun C++ SDK
Loading...
Searching...
No Matches
pose_rotation_quat.hpp
1// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/cpp/mod.rs
2// Based on "crates/store/re_types/definitions/rerun/components/rotation_quat.fbs".
3
4#pragma once
5
6#include "../component_descriptor.hpp"
7#include "../datatypes/quaternion.hpp"
8#include "../result.hpp"
9
10#include <cstdint>
11#include <memory>
12
13namespace rerun::components {
14 /// **Component**: A 3D rotation expressed as a quaternion that doesn't propagate in the transform hierarchy.
15 ///
16 /// Note: although the x,y,z,w components of the quaternion will be passed through to the
17 /// datastore as provided, when used in the Viewer, quaternions will always be normalized.
18 /// If normalization fails the rotation is treated as an invalid transform.
21
22 public:
23 PoseRotationQuat() = default;
24
25 PoseRotationQuat(rerun::datatypes::Quaternion quaternion_) : quaternion(quaternion_) {}
26
27 PoseRotationQuat& operator=(rerun::datatypes::Quaternion quaternion_) {
28 quaternion = quaternion_;
29 return *this;
30 }
31
32 /// Cast to the underlying Quaternion datatype
34 return quaternion;
35 }
36 };
37} // namespace rerun::components
38
39namespace rerun {
40 static_assert(sizeof(rerun::datatypes::Quaternion) == sizeof(components::PoseRotationQuat));
41
42 /// \private
43 template <>
44 struct Loggable<components::PoseRotationQuat> {
45 static constexpr ComponentDescriptor Descriptor = "rerun.components.PoseRotationQuat";
46
47 /// Returns the arrow data type this type corresponds to.
48 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
49 return Loggable<rerun::datatypes::Quaternion>::arrow_datatype();
50 }
51
52 /// Serializes an array of `rerun::components::PoseRotationQuat` into an arrow array.
53 static Result<std::shared_ptr<arrow::Array>> to_arrow(
54 const components::PoseRotationQuat* instances, size_t num_instances
55 ) {
56 if (num_instances == 0) {
57 return Loggable<rerun::datatypes::Quaternion>::to_arrow(nullptr, 0);
58 } else if (instances == nullptr) {
59 return rerun::Error(
60 ErrorCode::UnexpectedNullArgument,
61 "Passed array instances is null when num_elements> 0."
62 );
63 } else {
64 return Loggable<rerun::datatypes::Quaternion>::to_arrow(
65 &instances->quaternion,
66 num_instances
67 );
68 }
69 }
70 };
71} // namespace rerun
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:95
All built-in components. See Types in the Rerun manual.
Definition rerun.hpp:80
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Component: A 3D rotation expressed as a quaternion that doesn't propagate in the transform hierarchy.
Definition pose_rotation_quat.hpp:19
Datatype: A Quaternion represented by 4 real numbers.
Definition quaternion.hpp:25