Skip to content

Commit fdb93e6

Browse files
authored
Merge pull request #4 from jeromepl/master
Fix drawing names in the 'draw_stickfigure3d' tool
2 parents a46bdfa + dd020e1 commit fdb93e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymo/viz_tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def draw_stickfigure3d(mocap_track, frame, data=None, joints=None, draw_names=Fa
9191
y=parent_y + 0.1,
9292
z=parent_z + 0.1,
9393
s=joint,
94-
color='rgba(0,0,0,0.9')
94+
color='rgba(0,0,0,0.9)')
9595

9696
return ax
9797

@@ -233,4 +233,4 @@ def nb_play_mocap(mocap, mf, meta=None, frame_time=1/30, scale=1, camera_z=500,
233233
url = '%s?&cz=200&order=xzyi&frame_time=%f&scale=%f'%(base_url, frame_time, scale)
234234
iframe = '<iframe frameborder="0" src=' + url + ' width="100%" height=500></iframe>'
235235
link = '<a href=%s target="_blank">New Window</a>'%url
236-
return IPython.display.HTML(iframe+link)
236+
return IPython.display.HTML(iframe+link)

0 commit comments

Comments
 (0)