removed obsolete keyword "Bunge" from asEulers() method

This commit is contained in:
Philip Eisenlohr 2018-11-22 11:51:53 -05:00
parent a0033eb430
commit 9b82b7fadd
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 9124a7222009c0f045490aa825886fa2de95de19
Subproject commit dd70ef078e0b4422b4bf81030e896a7bd098e841

View File

@ -169,7 +169,7 @@ for name in filenames:
for output in options.output:
if output == 'quaternion': table.data_append(o.asQuaternion())
elif output == 'rodrigues': table.data_append(o.asRodrigues())
elif output == 'eulers': table.data_append(o.asEulers('Bunge', degrees=options.degrees))
elif output == 'eulers': table.data_append(o.asEulers(degrees=options.degrees))
outputAlive = table.data_write() # output processed line
# ------------------------------------------ output finalization -----------------------------------