Rerun C++ SDK
Loading...
Searching...
No Matches
force_center.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/force_center.fbs".
3
4#pragma once
5
6#include "../../blueprint/components/enabled.hpp"
7#include "../../blueprint/components/force_strength.hpp"
8#include "../../collection.hpp"
9#include "../../component_batch.hpp"
10#include "../../component_column.hpp"
11#include "../../indicator_component.hpp"
12#include "../../result.hpp"
13
14#include <cstdint>
15#include <optional>
16#include <utility>
17#include <vector>
18
19namespace rerun::blueprint::archetypes {
20 /// **Archetype**: Tries to move the center of mass of the graph to the origin.
21 ///
22 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
23 ///
24 struct ForceCenter {
25 /// Whether the center force is enabled.
26 ///
27 /// The center force tries to move the center of mass of the graph towards the origin.
28 std::optional<ComponentBatch> enabled;
29
30 /// The strength of the force.
31 std::optional<ComponentBatch> strength;
32
33 public:
34 static constexpr const char IndicatorComponentName[] =
35 "rerun.blueprint.components.ForceCenterIndicator";
36
37 /// Indicator component, used to identify the archetype when converting to a list of components.
39 /// The name of the archetype as used in `ComponentDescriptor`s.
40 static constexpr const char ArchetypeName[] = "rerun.blueprint.archetypes.ForceCenter";
41
42 /// `ComponentDescriptor` for the `enabled` field.
43 static constexpr auto Descriptor_enabled = ComponentDescriptor(
44 ArchetypeName, "enabled",
46 );
47 /// `ComponentDescriptor` for the `strength` field.
49 ArchetypeName, "strength",
51 );
52
53 public:
54 ForceCenter() = default;
55 ForceCenter(ForceCenter&& other) = default;
56 ForceCenter(const ForceCenter& other) = default;
57 ForceCenter& operator=(const ForceCenter& other) = default;
58 ForceCenter& operator=(ForceCenter&& other) = default;
59
60 /// Update only some specific fields of a `ForceCenter`.
62 return ForceCenter();
63 }
64
65 /// Clear all the fields of a `ForceCenter`.
67
68 /// Whether the center force is enabled.
69 ///
70 /// The center force tries to move the center of mass of the graph towards the origin.
72 enabled = ComponentBatch::from_loggable(_enabled, Descriptor_enabled).value_or_throw();
73 return std::move(*this);
74 }
75
76 /// The strength of the force.
78 strength =
79 ComponentBatch::from_loggable(_strength, Descriptor_strength).value_or_throw();
80 return std::move(*this);
81 }
82
83 /// Partitions the component data into multiple sub-batches.
84 ///
85 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
86 /// instead, via `ComponentBatch::partitioned`.
87 ///
88 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
89 ///
90 /// The specified `lengths` must sum to the total length of the component batch.
92
93 /// Partitions the component data into unit-length sub-batches.
94 ///
95 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
96 /// where `n` is automatically guessed.
98 };
99
100} // namespace rerun::blueprint::archetypes
101
102namespace rerun {
103 /// \private
104 template <typename T>
105 struct AsComponents;
106
107 /// \private
108 template <>
109 struct AsComponents<blueprint::archetypes::ForceCenter> {
110 /// Serialize all set component batches.
111 static Result<Collection<ComponentBatch>> as_batches(
113 );
114 };
115} // 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=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: Tries to move the center of mass of the graph to the origin.
Definition force_center.hpp:24
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition force_center.hpp:40
ForceCenter with_strength(const rerun::blueprint::components::ForceStrength &_strength) &&
The strength of the force.
Definition force_center.hpp:77
static constexpr auto Descriptor_enabled
ComponentDescriptor for the enabled field.
Definition force_center.hpp:43
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
static ForceCenter clear_fields()
Clear all the fields of a ForceCenter.
static constexpr auto Descriptor_strength
ComponentDescriptor for the strength field.
Definition force_center.hpp:48
ForceCenter with_enabled(const rerun::blueprint::components::Enabled &_enabled) &&
Whether the center force is enabled.
Definition force_center.hpp:71
static ForceCenter update_fields()
Update only some specific fields of a ForceCenter.
Definition force_center.hpp:61
std::optional< ComponentBatch > enabled
Whether the center force is enabled.
Definition force_center.hpp:28
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
std::optional< ComponentBatch > strength
The strength of the force.
Definition force_center.hpp:31
Component: Whether a procedure is enabled.
Definition enabled.hpp:18
Component: The strength of a given force.
Definition force_strength.hpp:20
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:32