Tagged Questions
1
vote
2answers
169 views
Moving an object around the the circle to the specific location in circumference
Well I have run out of ideas how to approach this particular problem.See the picture below:
So the idea is that the object (dot in black) has to get to a point mark X (red X mark).However the ...
1
vote
2answers
290 views
Circular movement - eliminating speed ups near Y = 0
I have a basic algorithm to rotate an enemy around a 200 unit radius circle with center 0. This is how I'm achieving that:
if (position.Y <= 0 && position.X > -200)
{
position.X -= ...