angleTo method

double angleTo(
  1. SdlxFPoint other
)

Implementation

double angleTo(SdlxFPoint other) => math.atan2(other.y - y, other.x - x);