Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sanika-n committed Feb 7, 2025
1 parent 7c77860 commit d46d8d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesa/visualization/mpl_space_drawing.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,9 @@ def draw_orthogonal_grid(
if draw_grid:
# Draw grid lines
for x in np.arange(-0.5, space.width - 0.5, 1):
ax.axvline(x, color="gray", linestyle=":")
ax.axvline(x, color="gray", linestyle="-")
for y in np.arange(-0.5, space.height - 0.5, 1):
ax.axhline(y, color="gray", linestyle=":")
ax.axhline(y, color="gray", linestyle="-")

return ax

Expand Down

0 comments on commit d46d8d4

Please sign in to comment.