6#include "../component_descriptor.hpp"
7#include "../result.hpp"
16 class FixedSizeListBuilder;
22 std::array<uint32_t, 2> xy;
26 UVec2D(uint32_t x, uint32_t y) : xy{x, y} {}
29 explicit UVec2D(
const uint32_t* xy_) : xy{xy_[0], xy_[1]} {}
44 UVec2D(std::array<uint32_t, 2> xy_) : xy(xy_) {}
46 UVec2D& operator=(std::array<uint32_t, 2> xy_) {
59 struct Loggable<datatypes::UVec2D> {
60 static constexpr ComponentDescriptor Descriptor =
"rerun.datatypes.UVec2D";
63 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
66 static Result<std::shared_ptr<arrow::Array>> to_arrow(
67 const datatypes::UVec2D* instances,
size_t num_instances
72 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:83
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Datatype: A uint32 vector in 2D space.
Definition uvec2d.hpp:21
UVec2D(const uint32_t *xy_)
Construct UVec2D from x/y uint32_t pointer.
Definition uvec2d.hpp:29
UVec2D(uint32_t x, uint32_t y)
Construct UVec2D from x/y values.
Definition uvec2d.hpp:26