fixed bug in asEulers() output in degrees
This commit is contained in:
parent
115518a2c8
commit
eb5ad7528f
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue