6#include "../datatypes/vec2d.hpp"
7#include "../result.hpp"
33 Position2D() =
default;
42 Position2D(std::array<float, 2> xy_) : xy(xy_) {}
44 Position2D& operator=(std::array<float, 2> xy_) {
61 struct Loggable<components::Position2D> {
62 static constexpr const char Name[] =
"rerun.components.Position2D";
65 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
66 return Loggable<rerun::datatypes::Vec2D>::arrow_datatype();
70 static Result<std::shared_ptr<arrow::Array>> to_arrow(
71 const components::Position2D* instances,
size_t num_instances
73 if (num_instances == 0) {
74 return Loggable<rerun::datatypes::Vec2D>::to_arrow(
nullptr, 0);
75 }
else if (instances ==
nullptr) {
77 ErrorCode::UnexpectedNullArgument,
78 "Passed array instances is null when num_elements> 0."
81 return Loggable<rerun::datatypes::Vec2D>::to_arrow(&instances->xy, num_instances);
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:79
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:22
Component: A position in 2D space.
Definition position2d.hpp:15
Position2D(float x, float y)
Construct Position2D from x/y values.
Definition position2d.hpp:20
Datatype: A vector in 2D space.
Definition vec2d.hpp:20