Creates a point from polar coordinates.
factory Point.fromPolar(double radius, double angle) { return Point( radius * math.cos(angle), radius * math.sin(angle), ); }