def to_world(self, vector): return la.dot(self.theta, vector)
def to_local(self, vector): return la.dot(vector, self.theta)