6#include "../result.hpp"
15 class FixedSizeListBuilder;
21 std::array<uint32_t, 2> xy;
25 UVec2D(uint32_t x, uint32_t y) : xy{x, y} {}
28 explicit UVec2D(
const uint32_t* xy_) : xy{xy_[0], xy_[1]} {}
43 UVec2D(std::array<uint32_t, 2> xy_) : xy(xy_) {}
45 UVec2D& operator=(std::array<uint32_t, 2> xy_) {
58 struct Loggable<datatypes::UVec2D> {
59 static constexpr const char Name[] =
"rerun.datatypes.UVec2D";
62 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
65 static Result<std::shared_ptr<arrow::Array>> to_arrow(
66 const datatypes::UVec2D* instances,
size_t num_instances
71 arrow::FixedSizeListBuilder* builder,
const datatypes::UVec2D* elements,
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:95
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:22
Datatype: A uint32 vector in 2D space.
Definition uvec2d.hpp:20
UVec2D(const uint32_t *xy_)
Construct UVec2D from x/y uint32_t pointer.
Definition uvec2d.hpp:28
UVec2D(uint32_t x, uint32_t y)
Construct UVec2D from x/y values.
Definition uvec2d.hpp:25