Skip to content
Snippets Groups Projects
Commit 967ae401 authored by Josh Borrow's avatar Josh Borrow
Browse files

Fixed incorrect offset for second vube in makeGlass.py

parent dead2668
No related branches found
No related tags found
1 merge request!1112Fixed incorrect offset for second cube in makeGlass.py
......@@ -37,7 +37,7 @@ def generate_two_cube(num_on_side, side_length=1.0):
mips = side_length / num_on_side
positions = np.concatenate([cube, cube + mips * 0.5])
positions = np.concatenate([cube, cube + mips])
return positions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment