Don't print a bunch
This commit is contained in:
parent
ad5392c9eb
commit
b42ae84a55
1 changed files with 1 additions and 8 deletions
|
@ -142,13 +142,6 @@ fn generate_city(
|
||||||
Vector3::new(-1.0 + ((current_ratio) - 3.0 / 4.0) * 8.0, -1.0, 0.0)
|
Vector3::new(-1.0 + ((current_ratio) - 3.0 / 4.0) * 8.0, -1.0, 0.0)
|
||||||
};
|
};
|
||||||
|
|
||||||
println!(
|
|
||||||
"layer: {}, x: {}, y: {}",
|
|
||||||
current_layer,
|
|
||||||
unit_translation.x,
|
|
||||||
unit_translation.y
|
|
||||||
);
|
|
||||||
|
|
||||||
duplicate(
|
duplicate(
|
||||||
&positions,
|
&positions,
|
||||||
current_layer as f32 *
|
current_layer as f32 *
|
||||||
|
@ -229,7 +222,7 @@ fn main() {
|
||||||
if let Ok(obj) = maybe_obj {
|
if let Ok(obj) = maybe_obj {
|
||||||
println!("Position: {:?}", obj.position);
|
println!("Position: {:?}", obj.position);
|
||||||
|
|
||||||
let layers = 5;
|
let layers = 10;
|
||||||
let spacing = 1.0;
|
let spacing = 1.0;
|
||||||
|
|
||||||
let (length, width) = find_l_w(&obj);
|
let (length, width) = find_l_w(&obj);
|
||||||
|
|
Reference in a new issue