I feel silly asking this but I seem to have forgotten how to use sine effectively.

I'm working on an iPad app so I'm in ObjectiveC, and I'm just trying to get a UIView to oscillate slowly. Just using position.y + sin(counter) makes it move so fast it vibrates and I can't seem to define the period to slow it down.

I've found some code samples (mostly for generating sound waves) and they all combine so many things into one line of code I can't easily pull it apart. Can anybody just explain what I should be doing?

link|improve this question

36% accept rate
How are you currently animating the view? (Are you using a CABasicAnimation or an NSTimer, or ?) – middaparka Dec 20 '10 at 19:45
NSTimer, sorry. – Brian Carter Dec 20 '10 at 19:47
feedback

3 Answers

up vote 2 down vote accepted

sin (and cos) take a parameter in Radians. The name counter suggests that you're not using Radians.

So, you need to determine how many oscillations per second you want. Then, you can measure the time between the last and the current animation 'frame'. A whole wave is 2PI radians, so

Y = sin(2PI * Time * OccilationsPerSecond) * Amplitude. 
link|improve this answer
+1, but replace 2PI with 2.0 * M_PI. Use the constants that are defined for you instead of creating your own. – Stephen Canon Dec 20 '10 at 20:07
Ah yes. I didn't know the constant, but I actually meant to write some pseudo code. I don't even think 2PI is a valid constant name, is it? – GolezTrol Dec 20 '10 at 21:17
feedback

You need a formula like this:

x(t) = (x_max) sin(2*pi*frequency*t)

where

pi = 3.14159....
frequency = 1/period
t = time
x_max = maximum amplitude in the x-direction

If you want oscillation in the y-direction you need another function.

link|improve this answer
feedback

Whilst not the answer you're after, you could simply reduce the period you're calling the timer with if it's too fast. (That said, you can also set the duration for the CABasicAnimation - probably a much better approach, as iOS handles the animation for you, can auto-reverse to the initial settings, can be set to loop 'n' times, etc.)

That said, hopefully someone else will provide what you're after.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.