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/line_strip2d.hpp"
13#include "../components/radius.hpp"
14#include "../components/show_labels.hpp"
15#include "../components/text.hpp"
16#include "../result.hpp"
106 std::optional<ComponentBatch>
radii;
136 static constexpr const char ArchetypeName[] =
"rerun.archetypes.LineStrips2D";
180 .value_or_throw()) {}
193 return std::move(*
this);
199 return std::move(*
this);
205 return std::move(*
this);
214 return std::move(*
this);
224 return std::move(*
this);
236 return std::move(*
this);
246 return std::move(*
this);
258 return std::move(*
this);
267 return std::move(*
this);
291 template <
typename T>
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:87
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Arrow-encoded data of a single batch of components together with a component descriptor.
Definition component_batch.hpp:28
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &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:16
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: 2D line strips with positions and optional colors, radii, labels, etc.
Definition line_strips2d.hpp:101
static LineStrips2D update_fields()
Update only some specific fields of a LineStrips2D.
Definition line_strips2d.hpp:183
LineStrips2D with_strips(const Collection< rerun::components::LineStrip2D > &_strips) &&
All the actual 2D line strips that make up the batch.
Definition line_strips2d.hpp:191
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
LineStrips2D with_labels(const Collection< rerun::components::Text > &_labels) &&
Optional text labels for the line strips.
Definition line_strips2d.hpp:212
static constexpr auto Descriptor_show_labels
ComponentDescriptor for the show_labels field.
Definition line_strips2d.hpp:156
std::optional< ComponentBatch > labels
Optional text labels for the line strips.
Definition line_strips2d.hpp:115
std::optional< ComponentBatch > strips
All the actual 2D line strips that make up the batch.
Definition line_strips2d.hpp:103
static constexpr auto Descriptor_colors
ComponentDescriptor for the colors field.
Definition line_strips2d.hpp:148
std::optional< ComponentBatch > draw_order
An optional floating point value that specifies the 2D drawing order of each line strip.
Definition line_strips2d.hpp:127
static constexpr auto Descriptor_class_ids
ComponentDescriptor for the class_ids field.
Definition line_strips2d.hpp:166
LineStrips2D with_draw_order(const rerun::components::DrawOrder &_draw_order) &&
An optional floating point value that specifies the 2D drawing order of each line strip.
Definition line_strips2d.hpp:243
static constexpr auto Descriptor_strips
ComponentDescriptor for the strips field.
Definition line_strips2d.hpp:139
LineStrips2D with_show_labels(const rerun::components::ShowLabels &_show_labels) &&
Whether the text labels should be shown.
Definition line_strips2d.hpp:221
static constexpr auto Descriptor_draw_order
ComponentDescriptor for the draw_order field.
Definition line_strips2d.hpp:161
LineStrips2D with_class_ids(const Collection< rerun::components::ClassId > &_class_ids) &&
Optional components::ClassIds for the lines.
Definition line_strips2d.hpp:264
LineStrips2D 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 line_strips2d.hpp:231
std::optional< ComponentBatch > class_ids
Optional components::ClassIds for the lines.
Definition line_strips2d.hpp:132
LineStrips2D with_radii(const Collection< rerun::components::Radius > &_radii) &&
Optional radii for the line strips.
Definition line_strips2d.hpp:197
std::optional< ComponentBatch > colors
Optional colors for the line strips.
Definition line_strips2d.hpp:109
static constexpr auto Descriptor_radii
ComponentDescriptor for the radii field.
Definition line_strips2d.hpp:144
static LineStrips2D clear_fields()
Clear all the fields of a LineStrips2D.
static constexpr auto Descriptor_labels
ComponentDescriptor for the labels field.
Definition line_strips2d.hpp:152
LineStrips2D with_colors(const Collection< rerun::components::Color > &_colors) &&
Optional colors for the line strips.
Definition line_strips2d.hpp:203
LineStrips2D 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 line_strips2d.hpp:253
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition line_strips2d.hpp:136
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
std::optional< ComponentBatch > radii
Optional radii for the line strips.
Definition line_strips2d.hpp:106
std::optional< ComponentBatch > show_labels
Whether the text labels should be shown.
Definition line_strips2d.hpp:121
Component: Draw order of 2D elements.
Definition draw_order.hpp:19
Component: Whether the entity's components::Text label is shown.
Definition show_labels.hpp:18