6#include "../datatypes/rgba32.hpp"
7#include "../result.hpp"
23 albedo_factor = albedo_factor_;
30 albedo_factor = rgba_;
46 struct Loggable<components::AlbedoFactor> {
47 static constexpr const char Name[] =
"rerun.components.AlbedoFactor";
50 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
51 return Loggable<rerun::datatypes::Rgba32>::arrow_datatype();
55 static Result<std::shared_ptr<arrow::Array>> to_arrow(
56 const components::AlbedoFactor* instances,
size_t num_instances
58 if (num_instances == 0) {
59 return Loggable<rerun::datatypes::Rgba32>::to_arrow(
nullptr, 0);
60 }
else if (instances ==
nullptr) {
62 ErrorCode::UnexpectedNullArgument,
63 "Passed array instances is null when num_elements> 0."
66 return Loggable<rerun::datatypes::Rgba32>::to_arrow(
67 &instances->albedo_factor,
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:95
All built-in components. See Types in the Rerun manual.
Definition rerun.hpp:79
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