project<R extends Point<num>> method

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

Returns a new point projected from this point using projection.

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

Implementation

@override
R project<R extends Point>(
  Projection projection, {
  required CreatePosition<R> to,
}) =>
    point.project(projection, to: to);