transform static method

Point transform(
  1. Projection from,
  2. Projection to,
  3. Point point
)

Implementation

static PROJ.Point transform(
    PROJ.Projection from, PROJ.Projection to, PROJ.Point point) {
  return from.transform(to, point);
}