View Single Post
  #13  
Old 12-12-2008, 02:14 AM
DarkReaper0 DarkReaper0 is offline
No.
DarkReaper0's Avatar
Join Date: May 2005
Location: Texas,USA
Posts: 344
DarkReaper0 will become famous soon enough
Send a message via MSN to DarkReaper0
Eh, basic circle script equations when you want to solve for x and y positions:
PHP Code:
centerx r*cos(A);
centery r*sin(A);

//Obviously center x and center y would be your coordinates.

//A stands for alpha and should basically just be increased by .05 each run
//through, basically 'a += .05;'

//And r stands for the radius of your circle 
Reply With Quote