Move method comment to the header where it belongsc

This commit is contained in:
Cory Cross
2025-11-03 19:16:27 -08:00
parent d63fe04dac
commit 308077fd92
2 changed files with 1 additions and 1 deletions

View File

@@ -647,7 +647,6 @@ ModelMaterial* Model::add_material(t_model_material_id material_id, const ModelM
return material;
}
// makes sure all objects have at least one instance
bool Model::add_default_instances()
{
// apply a default position to all objects not having one

View File

@@ -1632,6 +1632,7 @@ public:
void delete_material(t_model_material_id material_id);
void clear_materials();
// Make sure all objects have at least one instance
bool add_default_instances();
// Returns approximate axis aligned bounding box of this model.
BoundingBoxf3 bounding_box_approx() const;