Cleanup model.py, interface for transforms should be mostly similar to that of skimage.
Need the basic properties:
- .matrix
- .vector
- .inverse
In abstract base class?
- mul(self, other):
return tform(matrix=np.dot(self.matrix, other.matrix))
** keep concept of coordinates.