Rerun C++ SDK
Loading...
Searching...
No Matches
albedo_factor.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/components/albedo_factor.fbs".
3
4#pragma once
5
6#include "../datatypes/rgba32.hpp"
7#include "../result.hpp"
8
9#include <cstdint>
10#include <memory>
11
12namespace rerun::components {
13 /// **Component**: A color multiplier, usually applied to a whole entity, e.g. a mesh.
14 struct AlbedoFactor {
15 rerun::datatypes::Rgba32 albedo_factor;
16
17 public:
18 AlbedoFactor() = default;
19
20 AlbedoFactor(rerun::datatypes::Rgba32 albedo_factor_) : albedo_factor(albedo_factor_) {}
21
22 AlbedoFactor& operator=(rerun::datatypes::Rgba32 albedo_factor_) {
23 albedo_factor = albedo_factor_;
24 return *this;
25 }
26
27 AlbedoFactor(uint32_t rgba_) : albedo_factor(rgba_) {}
28
29 AlbedoFactor& operator=(uint32_t rgba_) {
30 albedo_factor = rgba_;
31 return *this;
32 }
33
34 /// Cast to the underlying Rgba32 datatype
35 operator rerun::datatypes::Rgba32() const {
36 return albedo_factor;
37 }
38 };
39} // namespace rerun::components
40
41namespace rerun {
42 static_assert(sizeof(rerun::datatypes::Rgba32) == sizeof(components::AlbedoFactor));
43
44 /// \private
45 template <>
46 struct Loggable<components::AlbedoFactor> {
47 static constexpr const char Name[] = "rerun.components.AlbedoFactor";
48
49 /// Returns the arrow data type this type corresponds to.
50 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
51 return Loggable<rerun::datatypes::Rgba32>::arrow_datatype();
52 }
53
54 /// Serializes an array of `rerun::components::AlbedoFactor` into an arrow array.
55 static Result<std::shared_ptr<arrow::Array>> to_arrow(
56 const components::AlbedoFactor* instances, size_t num_instances
57 ) {
58 return Loggable<rerun::datatypes::Rgba32>::to_arrow(
59 &instances->albedo_factor,
60 num_instances
61 );
62 }
63 };
64} // namespace rerun
All built-in components. See Types in the Rerun manual.
Definition rerun.hpp:75
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:22
Component: A color multiplier, usually applied to a whole entity, e.g. a mesh.
Definition albedo_factor.hpp:14
Datatype: An RGBA color with unmultiplied/separate alpha, in sRGB gamma space with linear alpha.
Definition rgba32.hpp:27