mirror of
https://github.com/hannobraun/Fornjot
synced 2025-02-28 10:05:52 +00:00
Simplify variable name
This commit is contained in:
parent
22944676ba
commit
4e46824e77
@ -95,11 +95,11 @@ fn main() -> anyhow::Result<()> {
|
|||||||
|
|
||||||
if let Some(path) = args.export {
|
if let Some(path) = args.export {
|
||||||
let shape = model.load(¶meters)?;
|
let shape = model.load(¶meters)?;
|
||||||
let processed_shape = shape_processor.process(&shape);
|
let shape = shape_processor.process(&shape);
|
||||||
|
|
||||||
let mut mesh_maker = MeshMaker::new();
|
let mut mesh_maker = MeshMaker::new();
|
||||||
|
|
||||||
for triangle in processed_shape.triangles {
|
for triangle in shape.triangles {
|
||||||
for vertex in triangle.points() {
|
for vertex in triangle.points() {
|
||||||
mesh_maker.push(vertex);
|
mesh_maker.push(vertex);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user