Skip to content

Commit

Permalink
floor scale
Browse files Browse the repository at this point in the history
  • Loading branch information
Ipuch committed May 22, 2024
1 parent c6a0499 commit b7dea39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyorerun/timeless/floor.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def floor_mesh(square_width: float, height_offset: float, subsquares: int) -> tu
The faces of the floor.
"""
x, y = np.meshgrid(
np.linspace(-square_width / 2, square_width / 2, subsquares),
np.linspace(-square_width / 2, square_width / 2, subsquares),
np.linspace(-square_width, square_width, subsquares),
np.linspace(-square_width, square_width, subsquares),
)

vertices = []
Expand Down

0 comments on commit b7dea39

Please sign in to comment.