Object List
Primitives
PlaneBoxSphereCylinderCone
Scene Objects
MeshModelTextDrone
Markers
ArrowGridPathOdometryDegeneracyIndicatorPointCloud
Model Loading
auto model = livision::Model::InstanceWithPath(
"path/to/model.sdf",
{.scale = {1.0, 1.0, 1.0}});
viewer->AddObject(model);
or
auto model = livision::Model::Instance();
model->SetFromFile("path/to/model.stl");
viewer->AddObject(model);