rotatePoint method

CustomPoint<num> rotatePoint(
  1. CustomPoint<num> mapCenter,
  2. CustomPoint<num> point, {
  3. bool counterRotation = true,
})

Implementation

CustomPoint<num> rotatePoint(
    CustomPoint<num> mapCenter, CustomPoint<num> point,
    {bool counterRotation = true}) {
  return _state.rotatePoint(mapCenter, point,
      counterRotation: counterRotation);
}