Rerun C++ SDK
Loading...
Searching...
No Matches
boxes2d.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/archetypes/boxes2d.fbs".
3
4#pragma once
5
6#include "../collection.hpp"
7#include "../component_batch.hpp"
8#include "../component_column.hpp"
9#include "../components/class_id.hpp"
10#include "../components/color.hpp"
11#include "../components/draw_order.hpp"
12#include "../components/half_size2d.hpp"
13#include "../components/position2d.hpp"
14#include "../components/radius.hpp"
15#include "../components/show_labels.hpp"
16#include "../components/text.hpp"
17#include "../indicator_component.hpp"
18#include "../result.hpp"
19
20#include <cstdint>
21#include <optional>
22#include <utility>
23#include <vector>
24
25namespace rerun::archetypes {
26 /// **Archetype**: 2D boxes with half-extents and optional center, colors etc.
27 ///
28 /// ## Example
29 ///
30 /// ### Simple 2D boxes
31 /// ![image](https://static.rerun.io/box2d_simple/ac4424f3cf747382867649610cbd749c45b2020b/full.png)
32 ///
33 /// ```cpp
34 /// #include <rerun.hpp>
35 ///
36 /// int main() {
37 /// const auto rec = rerun::RecordingStream("rerun_example_box2d");
38 /// rec.spawn().exit_on_failure();
39 ///
40 /// rec.log("simple", rerun::Boxes2D::from_mins_and_sizes({{-1.f, -1.f}}, {{2.f, 2.f}}));
41 /// }
42 /// ```
43 struct Boxes2D {
44 /// All half-extents that make up the batch of boxes.
45 std::optional<ComponentBatch> half_sizes;
46
47 /// Optional center positions of the boxes.
48 std::optional<ComponentBatch> centers;
49
50 /// Optional colors for the boxes.
51 std::optional<ComponentBatch> colors;
52
53 /// Optional radii for the lines that make up the boxes.
54 std::optional<ComponentBatch> radii;
55
56 /// Optional text labels for the boxes.
57 ///
58 /// If there's a single label present, it will be placed at the center of the entity.
59 /// Otherwise, each instance will have its own label.
60 std::optional<ComponentBatch> labels;
61
62 /// Optional choice of whether the text labels should be shown by default.
63 std::optional<ComponentBatch> show_labels;
64
65 /// An optional floating point value that specifies the 2D drawing order.
66 ///
67 /// Objects with higher values are drawn on top of those with lower values.
68 ///
69 /// The default for 2D boxes is 10.0.
70 std::optional<ComponentBatch> draw_order;
71
72 /// Optional `components::ClassId`s for the boxes.
73 ///
74 /// The `components::ClassId` provides colors and labels if not specified explicitly.
75 std::optional<ComponentBatch> class_ids;
76
77 public:
78 static constexpr const char IndicatorComponentName[] = "rerun.components.Boxes2DIndicator";
79
80 /// Indicator component, used to identify the archetype when converting to a list of components.
82 /// The name of the archetype as used in `ComponentDescriptor`s.
83 static constexpr const char ArchetypeName[] = "rerun.archetypes.Boxes2D";
84
85 /// `ComponentDescriptor` for the `half_sizes` field.
87 ArchetypeName, "half_sizes",
89 );
90 /// `ComponentDescriptor` for the `centers` field.
91 static constexpr auto Descriptor_centers = ComponentDescriptor(
92 ArchetypeName, "centers",
94 );
95 /// `ComponentDescriptor` for the `colors` field.
96 static constexpr auto Descriptor_colors = ComponentDescriptor(
98 );
99 /// `ComponentDescriptor` for the `radii` field.
100 static constexpr auto Descriptor_radii = ComponentDescriptor(
102 );
103 /// `ComponentDescriptor` for the `labels` field.
104 static constexpr auto Descriptor_labels = ComponentDescriptor(
106 );
107 /// `ComponentDescriptor` for the `show_labels` field.
109 ArchetypeName, "show_labels",
111 );
112 /// `ComponentDescriptor` for the `draw_order` field.
114 ArchetypeName, "draw_order",
116 );
117 /// `ComponentDescriptor` for the `class_ids` field.
119 ArchetypeName, "class_ids",
121 );
122
123 public: // START of extensions from boxes2d_ext.cpp:
124 /// Creates new `Boxes2D` with `half_sizes` centered around the local origin.
126 return Boxes2D().with_half_sizes(std::move(half_sizes));
127 }
128
129 /// Creates new `Boxes2D` with `centers` and `half_sizes`.
133 ) {
134 return Boxes2D()
135 .with_half_sizes(std::move(half_sizes))
136 .with_centers(std::move(centers));
137 }
138
139 /// Creates new `Boxes2D` with `half_sizes` created from (full) sizes.
140 ///
141 /// TODO(#3285): Does *not* preserve data as-is and instead creates half-sizes from the
142 /// input data.
143 static Boxes2D from_sizes(const std::vector<datatypes::Vec2D>& sizes);
144
145 /// Creates new `Boxes2D` with `centers` and `half_sizes` created from centers and (full)
146 /// sizes.
147 ///
148 /// TODO(#3285): Does *not* preserve data as-is and instead creates centers and half-sizes
149 /// from the input data.
151 Collection<components::Position2D> centers, const std::vector<datatypes::Vec2D>& sizes
152 ) {
153 return from_sizes(std::move(sizes)).with_centers(std::move(centers));
154 }
155
156 /// Creates new `Boxes2D` with `half_sizes` and `centers` created from minimums and (full)
157 /// sizes.
158 ///
159 /// TODO(#3285): Does *not* preserve data as-is and instead creates centers and half-sizes
160 /// from the input data.
162 const std::vector<datatypes::Vec2D>& mins, const std::vector<datatypes::Vec2D>& sizes
163 );
164
165 // END of extensions from boxes2d_ext.cpp, start of generated code:
166
167 public:
168 Boxes2D() = default;
169 Boxes2D(Boxes2D&& other) = default;
170 Boxes2D(const Boxes2D& other) = default;
171 Boxes2D& operator=(const Boxes2D& other) = default;
172 Boxes2D& operator=(Boxes2D&& other) = default;
173
174 /// Update only some specific fields of a `Boxes2D`.
176 return Boxes2D();
177 }
178
179 /// Clear all the fields of a `Boxes2D`.
181
182 /// All half-extents that make up the batch of boxes.
184 half_sizes =
185 ComponentBatch::from_loggable(_half_sizes, Descriptor_half_sizes).value_or_throw();
186 return std::move(*this);
187 }
188
189 /// Optional center positions of the boxes.
191 centers = ComponentBatch::from_loggable(_centers, Descriptor_centers).value_or_throw();
192 return std::move(*this);
193 }
194
195 /// Optional colors for the boxes.
197 colors = ComponentBatch::from_loggable(_colors, Descriptor_colors).value_or_throw();
198 return std::move(*this);
199 }
200
201 /// Optional radii for the lines that make up the boxes.
203 radii = ComponentBatch::from_loggable(_radii, Descriptor_radii).value_or_throw();
204 return std::move(*this);
205 }
206
207 /// Optional text labels for the boxes.
208 ///
209 /// If there's a single label present, it will be placed at the center of the entity.
210 /// Otherwise, each instance will have its own label.
212 labels = ComponentBatch::from_loggable(_labels, Descriptor_labels).value_or_throw();
213 return std::move(*this);
214 }
215
216 /// Optional choice of whether the text labels should be shown by default.
219 .value_or_throw();
220 return std::move(*this);
221 }
222
223 /// This method makes it possible to pack multiple `show_labels` in a single component batch.
224 ///
225 /// This only makes sense when used in conjunction with `columns`. `with_show_labels` should
226 /// be used when logging a single row's worth of data.
228 ) && {
230 .value_or_throw();
231 return std::move(*this);
232 }
233
234 /// An optional floating point value that specifies the 2D drawing order.
235 ///
236 /// Objects with higher values are drawn on top of those with lower values.
237 ///
238 /// The default for 2D boxes is 10.0.
240 draw_order =
241 ComponentBatch::from_loggable(_draw_order, Descriptor_draw_order).value_or_throw();
242 return std::move(*this);
243 }
244
245 /// This method makes it possible to pack multiple `draw_order` in a single component batch.
246 ///
247 /// This only makes sense when used in conjunction with `columns`. `with_draw_order` should
248 /// be used when logging a single row's worth of data.
250 ) && {
251 draw_order =
252 ComponentBatch::from_loggable(_draw_order, Descriptor_draw_order).value_or_throw();
253 return std::move(*this);
254 }
255
256 /// Optional `components::ClassId`s for the boxes.
257 ///
258 /// The `components::ClassId` provides colors and labels if not specified explicitly.
260 class_ids =
261 ComponentBatch::from_loggable(_class_ids, Descriptor_class_ids).value_or_throw();
262 return std::move(*this);
263 }
264
265 /// Partitions the component data into multiple sub-batches.
266 ///
267 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
268 /// instead, via `ComponentBatch::partitioned`.
269 ///
270 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
271 ///
272 /// The specified `lengths` must sum to the total length of the component batch.
274
275 /// Partitions the component data into unit-length sub-batches.
276 ///
277 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
278 /// where `n` is automatically guessed.
280 };
281
282} // namespace rerun::archetypes
283
284namespace rerun {
285 /// \private
286 template <typename T>
287 struct AsComponents;
288
289 /// \private
290 template <>
291 struct AsComponents<archetypes::Boxes2D> {
292 /// Serialize all set component batches.
293 static Result<Collection<ComponentBatch>> as_batches(const archetypes::Boxes2D& archetype);
294 };
295} // namespace rerun
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
A class for representing either a usable value, or an error.
Definition result.hpp:14
All built-in archetypes. See Types in the Rerun manual.
Definition rerun.hpp:76
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &descriptor=rerun::Loggable< T >::Descriptor)
Creates a new component batch from a collection of component instances.
Definition component_batch.hpp:46
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:14
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: 2D boxes with half-extents and optional center, colors etc.
Definition boxes2d.hpp:43
static Boxes2D clear_fields()
Clear all the fields of a Boxes2D.
Boxes2D with_class_ids(const Collection< rerun::components::ClassId > &_class_ids) &&
Optional components::ClassIds for the boxes.
Definition boxes2d.hpp:259
static constexpr auto Descriptor_show_labels
ComponentDescriptor for the show_labels field.
Definition boxes2d.hpp:108
std::optional< ComponentBatch > centers
Optional center positions of the boxes.
Definition boxes2d.hpp:48
static Boxes2D update_fields()
Update only some specific fields of a Boxes2D.
Definition boxes2d.hpp:175
std::optional< ComponentBatch > draw_order
An optional floating point value that specifies the 2D drawing order.
Definition boxes2d.hpp:70
std::optional< ComponentBatch > show_labels
Optional choice of whether the text labels should be shown by default.
Definition boxes2d.hpp:63
Boxes2D with_draw_order(const rerun::components::DrawOrder &_draw_order) &&
An optional floating point value that specifies the 2D drawing order.
Definition boxes2d.hpp:239
std::optional< ComponentBatch > radii
Optional radii for the lines that make up the boxes.
Definition boxes2d.hpp:54
std::optional< ComponentBatch > half_sizes
All half-extents that make up the batch of boxes.
Definition boxes2d.hpp:45
Boxes2D with_labels(const Collection< rerun::components::Text > &_labels) &&
Optional text labels for the boxes.
Definition boxes2d.hpp:211
Boxes2D with_colors(const Collection< rerun::components::Color > &_colors) &&
Optional colors for the boxes.
Definition boxes2d.hpp:196
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition boxes2d.hpp:83
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
Boxes2D with_half_sizes(const Collection< rerun::components::HalfSize2D > &_half_sizes) &&
All half-extents that make up the batch of boxes.
Definition boxes2d.hpp:183
static constexpr auto Descriptor_class_ids
ComponentDescriptor for the class_ids field.
Definition boxes2d.hpp:118
static constexpr auto Descriptor_radii
ComponentDescriptor for the radii field.
Definition boxes2d.hpp:100
static constexpr auto Descriptor_colors
ComponentDescriptor for the colors field.
Definition boxes2d.hpp:96
Boxes2D with_centers(const Collection< rerun::components::Position2D > &_centers) &&
Optional center positions of the boxes.
Definition boxes2d.hpp:190
static constexpr auto Descriptor_draw_order
ComponentDescriptor for the draw_order field.
Definition boxes2d.hpp:113
static Boxes2D from_centers_and_sizes(Collection< components::Position2D > centers, const std::vector< datatypes::Vec2D > &sizes)
Creates new Boxes2D with centers and half_sizes created from centers and (full) sizes.
Definition boxes2d.hpp:150
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
Boxes2D with_many_show_labels(const Collection< rerun::components::ShowLabels > &_show_labels) &&
This method makes it possible to pack multiple show_labels in a single component batch.
Definition boxes2d.hpp:227
static Boxes2D from_sizes(const std::vector< datatypes::Vec2D > &sizes)
Creates new Boxes2D with half_sizes created from (full) sizes.
static Boxes2D from_centers_and_half_sizes(Collection< components::Position2D > centers, Collection< components::HalfSize2D > half_sizes)
Creates new Boxes2D with centers and half_sizes.
Definition boxes2d.hpp:130
static constexpr auto Descriptor_labels
ComponentDescriptor for the labels field.
Definition boxes2d.hpp:104
static constexpr auto Descriptor_half_sizes
ComponentDescriptor for the half_sizes field.
Definition boxes2d.hpp:86
Boxes2D with_many_draw_order(const Collection< rerun::components::DrawOrder > &_draw_order) &&
This method makes it possible to pack multiple draw_order in a single component batch.
Definition boxes2d.hpp:249
std::optional< ComponentBatch > labels
Optional text labels for the boxes.
Definition boxes2d.hpp:60
std::optional< ComponentBatch > colors
Optional colors for the boxes.
Definition boxes2d.hpp:51
Boxes2D with_radii(const Collection< rerun::components::Radius > &_radii) &&
Optional radii for the lines that make up the boxes.
Definition boxes2d.hpp:202
static constexpr auto Descriptor_centers
ComponentDescriptor for the centers field.
Definition boxes2d.hpp:91
static Boxes2D from_half_sizes(Collection< components::HalfSize2D > half_sizes)
Creates new Boxes2D with half_sizes centered around the local origin.
Definition boxes2d.hpp:125
static Boxes2D from_mins_and_sizes(const std::vector< datatypes::Vec2D > &mins, const std::vector< datatypes::Vec2D > &sizes)
Creates new Boxes2D with half_sizes and centers created from minimums and (full) sizes.
Boxes2D with_show_labels(const rerun::components::ShowLabels &_show_labels) &&
Optional choice of whether the text labels should be shown by default.
Definition boxes2d.hpp:217
std::optional< ComponentBatch > class_ids
Optional components::ClassIds for the boxes.
Definition boxes2d.hpp:75
Component: Draw order of 2D elements.
Definition draw_order.hpp:20
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:32
Component: Whether the entity's components::Text label is shown.
Definition show_labels.hpp:19