Changeset 731 for trunk/RBRapier

Show
Ignore:
Timestamp:
10/28/03 10:19:35 (5 years ago)
Author:
sholloway
Message:

*** empty log message ***

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/RBRapier/RBRapier/Tools/Transformations.py

    r703 r731  
    5959        """ 
    6060        return LinearAlgebra.inverse(self.asArray4x4()) 
     61 
     62    def Collapse(self): 
     63        return Matrix(self.asArray3x3()) 
    6164 
    6265    def __mul__(self, other): 
  • trunk/RBRapier/RBRapier/Tools/Transformations2d.py

    r703 r731  
    6161        return LinearAlgebra.inverse(self.asArray3x3()) 
    6262 
     63    def Collapse(self): 
     64        return Matrix(self.asArray3x3()) 
     65 
    6366    def __mul__(self, other): 
    6467        if isinstance(other, TransformPrimitive2dh):