6#include "../collection.hpp"
7#include "../datatypes/mesh_properties.hpp"
8#include "../result.hpp"
39 props = std::move(props_);
44 : props(std::move(indices_)) {}
47 props = std::move(indices_);
64 struct Loggable<components::MeshProperties> {
65 static constexpr const char Name[] =
"rerun.components.MeshProperties";
68 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
72 arrow::StructBuilder* builder,
const components::MeshProperties* elements,
77 static Result<std::shared_ptr<arrow::Array>> to_arrow(
78 const components::MeshProperties* instances,
size_t num_instances
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:47
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:87
All built-in components. See Types in the Rerun manual.
Definition rerun.hpp:69
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:20
Component: Optional triangle indices for a mesh.
Definition mesh_properties.hpp:23
Datatype: Optional triangle indices for a mesh.
Definition mesh_properties.hpp:22