Say if I had a point, and I wanted to find another point that is x distance at y angle from that point, how would I go about calculating that?
Develop games in your browser. Powerful, performant & highly capable.
Point2.x=dist*cos(ang) +point1.x
Point2.y=dist*sin(ang) +point1.y