operator + method

  1. @override
Projected operator +(
  1. Position other
)
override

Returns a position with coordinate values summed from this and other.

Implementation

@override
Projected operator +(Position other) =>
    cartesianPositionSum(this, other, to: Projected.create);