Simplify variable name

This commit is contained in:
Hanno Braun 2022-03-18 14:18:20 +01:00
parent 22944676ba
commit 4e46824e77

View File

@ -95,11 +95,11 @@ fn main() -> anyhow::Result<()> {
if let Some(path) = args.export {
let shape = model.load(&parameters)?;
let processed_shape = shape_processor.process(&shape);
let shape = shape_processor.process(&shape);
let mut mesh_maker = MeshMaker::new();
for triangle in processed_shape.triangles {
for triangle in shape.triangles {
for vertex in triangle.points() {
mesh_maker.push(vertex);
}