*/
public static CellTransform transform(CellTransform transform,
CellTransform fromReferenceSystem, CellTransform toReferenceSystem) {
CellTransform newTransform = toReferenceSystem.clone(null);
newTransform.invert();
newTransform.mul(fromReferenceSystem);
newTransform.mul(transform);
return newTransform;
}
}