6#include "../collection.hpp"
7#include "../result.hpp"
26 std::optional<rerun::Collection<uint32_t>>
indices;
32 :
indices(std::move(indices_)) {}
47 struct Loggable<datatypes::MeshProperties> {
48 static constexpr const char Name[] =
"rerun.datatypes.MeshProperties";
51 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
55 arrow::StructBuilder* builder,
const datatypes::MeshProperties* elements,
60 static Result<std::shared_ptr<arrow::Array>> to_arrow(
61 const datatypes::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 datatypes. See Types in the Rerun manual.
Definition rerun.hpp:72
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:20
Datatype: Optional triangle indices for a mesh.
Definition mesh_properties.hpp:22
std::optional< rerun::Collection< uint32_t > > indices
A flattened array of vertex indices that describe the mesh's triangles.
Definition mesh_properties.hpp:26