Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
fix bug in visualizer
Browse files Browse the repository at this point in the history
  • Loading branch information
penincillin committed Oct 23, 2020
1 parent 8d92d97 commit 53be78a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions renderer/visualizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,9 @@ def _visualize_screenless_naive(self, meshList, skelList=None, body_bbox_list=No
for m in meshList:
m['ver'] *=ratio

for s in skelList:
s *=ratio
if skelList is not None:
for s in skelList:
s *=ratio


else:
Expand Down

0 comments on commit 53be78a

Please sign in to comment.