project<R extends Point<num>> abstract method

Bounded project<R extends Point<num>>(
  1. Projection projection, {
  2. required CreatePosition<R> to,
})

Returns a new object with all points projected using projection.

Target points of R are created using to as a point factory.

Implementation

Bounded project<R extends Point>(
  Projection projection, {
  required CreatePosition<R> to,
});