Integrate vertices-indices model into all

This commit is contained in:
Hanno Braun 2024-01-30 11:15:59 +01:00
parent 8608473005
commit aa29502291
3 changed files with 5 additions and 0 deletions

1
Cargo.lock generated
View File

@ -66,6 +66,7 @@ dependencies = [
"spacer",
"split",
"star",
"vertices-indices",
]
[[package]]

View File

@ -23,3 +23,6 @@ path = "../split"
[dependencies.star]
path = "../star"
[dependencies.vertices-indices]
path = "../vertices-indices"

View File

@ -25,6 +25,7 @@ pub fn model(services: &mut Services) -> Solid {
spacer::model(2., 1., 1., services),
split::model(1., 0.2, services),
star::model(5, 2., 1., 1., services),
vertices_indices::model(services),
];
let mut all = Solid::empty();