inverse method

Point inverse(
  1. Point point
)

Implementation

Point inverse(Point point) {
  return toProj.transform(fromProj, point);
}