rotatePoint method

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

Implementation

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