mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
21 lines
495 B
Python
21 lines
495 B
Python
|
"""
|
||
|
Methods to extend functionality of the VBase3 class
|
||
|
"""
|
||
|
|
||
|
def pPrintValues(self):
|
||
|
"""
|
||
|
Pretty print
|
||
|
"""
|
||
|
return "% 10.4f, % 10.4f, % 10.4f" % (self[0], self[1], self[2])
|
||
|
Dtool_funcToMethod(pPrintValues, VBase3)
|
||
|
del pPrintValues
|
||
|
|
||
|
def asTuple(self):
|
||
|
"""
|
||
|
Returns the vector as a tuple.
|
||
|
"""
|
||
|
print "Warning: VBase3.asTuple() is no longer needed and deprecated. Use the vector directly instead."
|
||
|
return tuple(self)
|
||
|
Dtool_funcToMethod(asTuple, VBase3)
|
||
|
del asTuple
|