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