def inStr(inst, *args, **kwds): '''Return the string representation of an instance. @param inst: The instance (any type). @param args: Optional positional arguments. @keyword kwds: Optional keyword arguments. @return: The I{inst}'s representation (C{str}). ''' return unStr(classname(inst), *args, **kwds)
def _xcopy(self, *attrs): '''(INTERNAL) Must be overloaded. ''' raise AssertionError(unStr(self.classname + '._xcopy', *attrs))
def falsed2(self): '''(INTERNAL) Must be overloaded. ''' raise AssertionError(unStr(self.classname + '.falsed2'))
def toStr(self, **kwds): '''(INTERNAL) Must be overloaded. @param kwds: Optional, keyword arguments. ''' raise AssertionError(unStr(self.classname + '.toStr', **kwds))
def toCartesian(self): '''Convert this (geodetic) point to (geocentric) x/y/z Cartesian coordinates. Must be overloaded. ''' raise AssertionError(unStr(self.classname + '.toCartesian'))