Recent content by NCGrimbo
-
N
Undergrad Location on a circle at time t.
That fixed it. Thanks again Peeter! -
N
Undergrad Location on a circle at time t.
I seem to be having problems converting the formulas into my code. Here's the code I've created: 'Starting values nRadius = 30 StartX = 130 StartY = 100 CenterX = 100 CenterY = 100 nVelocity = 1 'Set the current XY to be the starting XY CurX = StartX... -
N
Undergrad Location on a circle at time t.
That's what I was looking for. Thanks Peeter. -
N
Undergrad Location on a circle at time t.
Hi all. I'm doing a little program for my own fun and I'm having troubles with the physics. I need to be able to calculate where an object is on a circle after an amount of time has passed. I know the radius (R) of the circle, the starting x (Sx) and y (Sy) positions, and the velocity (v)...