Update order of models in all

Sorting them alphabetically means that their order matches the order
they are typically displayed in within the `models/` directory. This
makes it easier to see, if any are missing.
This commit is contained in:
Hanno Braun 2024-01-30 11:12:55 +01:00
parent 3c7014724e
commit 16f34c6668

View File

@ -20,10 +20,10 @@ pub fn model(services: &mut Services) -> Solid {
let models = [
cuboid::model([1., 2., 3.], services),
spacer::model(2., 1., 1., services),
star::model(5, 2., 1., 1., services),
split::model(1., 0.2, services),
holes::model(0.5, services),
spacer::model(2., 1., 1., services),
split::model(1., 0.2, services),
star::model(5, 2., 1., 1., services),
];
let mut all = Solid::empty();