Poodletooth-iLand/panda/direct/extensions/VBase3-extensions.py
2015-03-03 17:10:12 -05:00

15 lines
384 B
Python

"""
VBase3-extensions module: contains methods to extend functionality
of the VBase3 class
"""
def __repr__(self):
return '%s(%s, %s, %s)' % (
self.__class__.__name__, self[0], self[1], self[2])
def pPrintValues(self):
"""
Pretty print
"""
return "% 10.4f, % 10.4f, % 10.4f" % (self[0], self[1], self[2])