angleBetween method

Future<num?> angleBetween(
  1. MPPoint other
)

Calculates the angle between this point and another MPPoint in degrees from north

Implementation

Future<num?> angleBetween(MPPoint other) async =>
    await UtilPlatform.instance.pointAngleBetween(this, other);