mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-15 06:52:39 +02:00
Update visualize.py
Due to this issue: https://github.com/matplotlib/matplotlib/issues/17172 setting aspect equal doesn't work on 3D axes. Removing for the moment.
This commit is contained in:
parent
ff82f12c3d
commit
fee16c7b18
1 changed files with 1 additions and 1 deletions
|
|
@ -411,7 +411,7 @@ class mocap_data_show(matplotlib_show):
|
|||
def __init__(self, vals, axes=None, connect=None, color='b'):
|
||||
if axes==None:
|
||||
fig = plt.figure()
|
||||
axes = fig.add_subplot(111, projection='3d', aspect='equal')
|
||||
axes = fig.add_subplot(111, projection='3d') #, aspect='equal') aspect equal not implemented in 3D plots currently see this issue: https://github.com/matplotlib/matplotlib/issues/17172
|
||||
super(mocap_data_show, self).__init__(vals, axes)
|
||||
|
||||
self.color = color
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue