Skip to content

Commit

Permalink
Workaround the Axes3D not implemented stunt.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisias committed Aug 15, 2022
1 parent 29ee82c commit 3fb78b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,10 @@ def draw_map(self):
plt.style.use('seaborn-whitegrid')
fig = plt.figure()
ax = fig.gca(projection='3d')
ax.set_aspect("equal")

# see https://github.com/fabro66/GAST-Net-3DPoseEstimation/issues/51
#ax.set_aspect("equal")
ax.set_box_aspect([1,1,1])

# Draw a sphere to mimic a planet
u = np.linspace(0, 2 * np.pi, 100)
Expand Down

0 comments on commit 3fb78b4

Please sign in to comment.