6#include "../../blueprint/components/space_view_class.hpp"
7#include "../../blueprint/components/space_view_origin.hpp"
8#include "../../blueprint/components/visible.hpp"
9#include "../../collection.hpp"
10#include "../../compiler_utils.hpp"
11#include "../../component_batch.hpp"
12#include "../../components/name.hpp"
13#include "../../indicator_component.hpp"
14#include "../../result.hpp"
21namespace rerun::blueprint::archetypes {
37 std::optional<rerun::blueprint::components::SpaceViewOrigin>
space_origin;
42 std::optional<rerun::blueprint::components::Visible>
visible;
45 static constexpr const char IndicatorComponentName[] =
46 "rerun.blueprint.components.SpaceViewBlueprintIndicator";
62 RR_WITH_MAYBE_UNINITIALIZED_DISABLED(
return std::move(*
this);)
77 RR_WITH_MAYBE_UNINITIALIZED_DISABLED(
return std::move(*
this);)
86 RR_WITH_MAYBE_UNINITIALIZED_DISABLED(
return std::move(*
this);)
99 struct AsComponents<blueprint::archetypes::SpaceViewBlueprint> {
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:22
Archetype: The description of a single view.
Definition space_view_blueprint.hpp:23
rerun::blueprint::components::SpaceViewClass class_identifier
The class of the view.
Definition space_view_blueprint.hpp:25
SpaceViewBlueprint with_space_origin(rerun::blueprint::components::SpaceViewOrigin _space_origin) &&
The "anchor point" of this space view.
Definition space_view_blueprint.hpp:72
std::optional< rerun::components::Name > display_name
The name of the view.
Definition space_view_blueprint.hpp:28
std::optional< rerun::blueprint::components::SpaceViewOrigin > space_origin
The "anchor point" of this space view.
Definition space_view_blueprint.hpp:37
SpaceViewBlueprint with_visible(rerun::blueprint::components::Visible _visible) &&
Whether this space view is visible.
Definition space_view_blueprint.hpp:83
std::optional< rerun::blueprint::components::Visible > visible
Whether this space view is visible.
Definition space_view_blueprint.hpp:42
SpaceViewBlueprint with_display_name(rerun::components::Name _display_name) &&
The name of the view.
Definition space_view_blueprint.hpp:59
Component: The class identifier of view, e.g. "2D", "TextLog", ….
Definition space_view_class.hpp:16
Component: The origin of a SpaceView.
Definition space_view_origin.hpp:16
Component: Whether the container, view, entity or instance is currently visible.
Definition visible.hpp:14
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:30
Component: A display name, typically for an entity or a item like a plot series.
Definition name.hpp:16