6#include "../datatypes/uint32.hpp"
7#include "../result.hpp"
58 struct Loggable<components::SphericalHarmonicsDegree> {
59 static constexpr std::string_view ComponentType =
60 "rerun.components.SphericalHarmonicsDegree";
63 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
64 return Loggable<rerun::datatypes::UInt32>::arrow_datatype();
68 static Result<std::shared_ptr<arrow::Array>> to_arrow(
69 const components::SphericalHarmonicsDegree* instances,
size_t num_instances
71 if (num_instances == 0) {
72 return Loggable<rerun::datatypes::UInt32>::to_arrow(
nullptr, 0);
73 }
else if (instances ==
nullptr) {
75 ErrorCode::UnexpectedNullArgument,
76 "Passed array instances is null when num_elements> 0."
79 return Loggable<rerun::datatypes::UInt32>::to_arrow(
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:103
All built-in components. See Types in the Rerun manual.
Definition rerun.hpp:90
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Component: The highest spherical harmonics degree to evaluate when rendering, 0-3.
Definition spherical_harmonics_degree.hpp:26
Datatype: A 32bit unsigned integer.
Definition uint32.hpp:24