Calculates a new Point based on a polar coordinate offset from a center.
The origin point of the polar sweep.
The spatial distance from the centre.
The polar angle in radians.
A new Point at the calculated Cartesian coordinate.
const p = polar_to_point(new Point({x:0, y:0, z:0}), 10, Math.PI); // Point(-10, 0, 0) Copy
const p = polar_to_point(new Point({x:0, y:0, z:0}), 10, Math.PI); // Point(-10, 0, 0)
Calculates a new Point based on a polar coordinate offset from a center.