fixed bug in asEulers() output in degrees

This commit is contained in:
Tias Maiti 2015-08-29 23:22:32 +00:00
parent 115518a2c8
commit eb5ad7528f
1 changed files with 1 additions and 1 deletions

View File

@ -802,7 +802,7 @@ class Orientation:
quaternion = property(asQuaternion)
def asEulers(self,type='bunge',degrees=False,standardRange=False):
return self.quaternion.asEulers(type)
return self.quaternion.asEulers(type, degrees, standardRange)
eulers = property(asEulers)
def asRodrigues(self):