PolarProjectionY
not ratedSame as PolarProjection except that this one only operates on the Y coordinate.
Use in conjunction with PolarProjectionX.
Use in conjunction with PolarProjectionX.
function PolarProjectionY takes real y, real angle, real distance returns real
return y + SinBJ(angle)*distance
endfunctionNo comments.