RE: [Flashcoders] Movement in an oval shape

2006-08-11 Thread Paul Steven
Thanks Ravi and others - that is very helpful indeed. Cheers Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ravi Marella Sent: 11 August 2006 07:08 To: Flashcoders mailing list Subject: RE: [Flashcoders] Movement in an oval shape The following

RE: [Flashcoders] Movement in an oval shape

2006-08-10 Thread Ravi Marella
; -Andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Steven Sent: Thursday, August 10, 2006 9:06 AM To: 'Flashcoders mailing list' Subject: [Flashcoders] Movement in an oval shape I have written some code to move some stars in a circ

RE: [Flashcoders] Movement in an oval shape

2006-08-10 Thread Andy Stone
essage- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Steven Sent: Thursday, August 10, 2006 9:06 AM To: 'Flashcoders mailing list' Subject: [Flashcoders] Movement in an oval shape I have written some code to move some stars in a circle. This is a snippet of the code:

Re: [Flashcoders] Movement in an oval shape

2006-08-10 Thread Jim Berkey
Check out the '3d Carousels' tutorials http://www.gotoandlearn.com/ jimbo *** REPLY SEPARATOR *** On 8/10/2006 at 2:05 PM Paul Steven wrote: >I have written some code to move some stars in a circle. > >This is a snippet of the code: > >vStar_Object._x = (Math.cos((vStar_Object.

[Flashcoders] Movement in an oval shape

2006-08-10 Thread Paul Steven
I have written some code to move some stars in a circle. This is a snippet of the code: vStar_Object._x = (Math.cos((vStar_Object.circlePos/180)*Math.PI))*160 + vStar_Object.centerX; vStar_Object._y = (Math.sin((vStar_Object.circlePos/180)*Math.PI))*160 + vStar_Obj