mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
16 lines
415 B
Python
16 lines
415 B
Python
|
|
||
|
"""
|
||
|
VBase4-extensions module: contains methods to extend functionality
|
||
|
of the VBase4 class
|
||
|
"""
|
||
|
|
||
|
def __repr__(self):
|
||
|
return '%s(%s, %s, %s, %s)' % (
|
||
|
self.__class__.__name__, self[0], self[1], self[2], self[3])
|
||
|
|
||
|
def pPrintValues(self):
|
||
|
"""
|
||
|
Pretty print
|
||
|
"""
|
||
|
return '% 10.4f, % 10.4f, % 10.4f, % 10.4f' % (self[0], self[1], self[2], self[3])
|