Perfect Orbit.. anyone got the code?

I’m looking for movement code that will give me a perfect orbit for an object around a point.

 
MovieClip.prototype.orbit = function(spd,r,xCen,yCen){
&nbsp &nbsp &nbsp &nbsp this.s+=spd;
&nbsp &nbsp &nbsp &nbsp this._x = Math.cos(this.s)*r + xCen;
&nbsp &nbsp &nbsp &nbsp this._y = Math.sin(this.s)*r + yCen;
}

thanks supra… you’re supra :wink:

you know… I’m really really enjoying the prototype method building. I have been using a lot of attachMovieClip(); methods lately, but often need to add code to them all, rather than go through clumsy loops and such.

Now here’s another two questions for you.

I’d like to scale my object down on one half lap of the loop, and scale it back up on the other half of loop. Obviously I’m trying to make it look like a real

how do I plot a curve from a center point, to an ever expanding radius?