Rerun C++ SDK
Loading...
Searching...
No Matches
plot_background.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/blueprint/archetypes/background.fbs".
3
4#pragma once
5
6#include "../../blueprint/components/enabled.hpp"
7#include "../../collection.hpp"
8#include "../../component_batch.hpp"
9#include "../../component_column.hpp"
10#include "../../components/color.hpp"
11#include "../../result.hpp"
12
13#include <cstdint>
14#include <optional>
15#include <utility>
16#include <vector>
17
18namespace rerun::blueprint::archetypes {
19 /// **Archetype**: Configuration of a background in a plot view.
20 ///
21 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
22 ///
24 /// Color used for the background.
25 std::optional<ComponentBatch> color;
26
27 /// Should the grid be drawn?
28 std::optional<ComponentBatch> show_grid;
29
30 public:
31 /// The name of the archetype as used in `ComponentDescriptor`s.
32 static constexpr const char ArchetypeName[] = "rerun.blueprint.archetypes.PlotBackground";
33
34 /// `ComponentDescriptor` for the `color` field.
35 static constexpr auto Descriptor_color = ComponentDescriptor(
37 );
38 /// `ComponentDescriptor` for the `show_grid` field.
40 ArchetypeName, "PlotBackground:show_grid",
42 );
43
44 public:
45 PlotBackground() = default;
46 PlotBackground(PlotBackground&& other) = default;
47 PlotBackground(const PlotBackground& other) = default;
48 PlotBackground& operator=(const PlotBackground& other) = default;
49 PlotBackground& operator=(PlotBackground&& other) = default;
50
51 /// Update only some specific fields of a `PlotBackground`.
53 return PlotBackground();
54 }
55
56 /// Clear all the fields of a `PlotBackground`.
58
59 /// Color used for the background.
61 color = ComponentBatch::from_loggable(_color, Descriptor_color).value_or_throw();
62 return std::move(*this);
63 }
64
65 /// Should the grid be drawn?
67 show_grid =
68 ComponentBatch::from_loggable(_show_grid, Descriptor_show_grid).value_or_throw();
69 return std::move(*this);
70 }
71
72 /// Partitions the component data into multiple sub-batches.
73 ///
74 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
75 /// instead, via `ComponentBatch::partitioned`.
76 ///
77 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
78 ///
79 /// The specified `lengths` must sum to the total length of the component batch.
81
82 /// Partitions the component data into unit-length sub-batches.
83 ///
84 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
85 /// where `n` is automatically guessed.
87 };
88
89} // namespace rerun::blueprint::archetypes
90
91namespace rerun {
92 /// \private
93 template <typename T>
94 struct AsComponents;
95
96 /// \private
97 template <>
98 struct AsComponents<blueprint::archetypes::PlotBackground> {
99 /// Serialize all set component batches.
100 static Result<Collection<ComponentBatch>> as_batches(
102 );
103 };
104} // 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 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)
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: Configuration of a background in a plot view.
Definition plot_background.hpp:23
static constexpr auto Descriptor_color
ComponentDescriptor for the color field.
Definition plot_background.hpp:35
PlotBackground with_color(const rerun::components::Color &_color) &&
Color used for the background.
Definition plot_background.hpp:60
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition plot_background.hpp:32
static PlotBackground clear_fields()
Clear all the fields of a PlotBackground.
std::optional< ComponentBatch > color
Color used for the background.
Definition plot_background.hpp:25
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
std::optional< ComponentBatch > show_grid
Should the grid be drawn?
Definition plot_background.hpp:28
PlotBackground with_show_grid(const rerun::blueprint::components::Enabled &_show_grid) &&
Should the grid be drawn?
Definition plot_background.hpp:66
static PlotBackground update_fields()
Update only some specific fields of a PlotBackground.
Definition plot_background.hpp:52
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
static constexpr auto Descriptor_show_grid
ComponentDescriptor for the show_grid field.
Definition plot_background.hpp:39
Component: Whether a procedure is enabled.
Definition enabled.hpp:17
Component: An RGBA color with unmultiplied/separate alpha, in sRGB gamma space with linear alpha.
Definition color.hpp:17