mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-03 16:52:39 +02:00
Force integer division (missed Python2-Python 3 change)
This commit is contained in:
parent
d645fc34bc
commit
c36cd19572
1 changed files with 1 additions and 1 deletions
|
|
@ -499,7 +499,7 @@ class stick_show(mocap_data_show):
|
|||
super(stick_show, self).__init__(vals, axes=axes, connect=connect)
|
||||
|
||||
def process_values(self):
|
||||
self.vals = self.vals.reshape((3, self.vals.shape[1]/3)).T
|
||||
self.vals = self.vals.reshape((3, self.vals.shape[1]//3)).T
|
||||
|
||||
class skeleton_show(mocap_data_show):
|
||||
"""data_show class for visualizing motion capture data encoded as a skeleton with angles."""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue