PolarProjectionX
not ratedSame as PolarProjection except that this one only operates on the X coordinate.
Use in conjunction with PolarProjectionY.
angle must be in degrees.
Use in conjunction with PolarProjectionY.
angle must be in degrees.
function PolarProjectionX takes real x, real angle, real distance returns real
return x + CosBJ(angle)*distance
endfunctionNo comments.