Activity › Forums › Adobe After Effects Expressions › How to create sine curve
-
How to create sine curve
Posted by Cornelius Matteo on July 1, 2005 at 4:30 pmHello All,
How can I create a sine wave, much like a brain wave, using AE 6.0?
Thx
CorneliusXavier Gomez replied 11 years, 10 months ago 6 Members · 5 Replies -
5 Replies
-
Jim Dodson
July 1, 2005 at 6:58 pmMake a mask with 2 points one at the far left outside of the frame; the other far right outside — make it perfectly staright
RENDER–>STROKE the mask (make sure you set PAINT STYLE OF STROKE to ON TRANPARENT).
Add WAVE WARP — wave type SINE
adjust and animate to taste using WAVE SPEED and PHASE….
-
Colin Braley
July 2, 2005 at 4:22 amYou could also do this via expressions and the write on effect…
Try this expression for the brush position of the write on effect://begin
amp = 100;//Height of wave in pixels
freq = 2;//Oscillations per sec
beginTime = 0;//in seconds
endTime = 5;//in secondsy = amp*Math.sin(freq*time*2*Math.PI) + (thisComp.height/2);
x =linear(time, beginTime, endTime, 0, thisComp.width);
[x,y]
//end~Colin
-
Filip Vandueren
July 3, 2005 at 1:04 amIf you don’t need it still and want it to animate like an oscilloscope,
Find yourself some audio of a very deep sine wave or maybe one that is changes tune a little bit and then use the “Render->Audio Waveform” Filter. -
Niels Bor
July 4, 2014 at 3:29 pmLook at this tutorial
https://www.youtube.com/watch?v=Ld6xcCxlCNYSome contents or functionalities here are not available due to your cookie preferences!This happens because the functionality/content marked as “Google Youtube” uses cookies that you choosed to keep disabled. In order to view this content or use this functionality, please enable cookies: click here to open your cookie preferences.
-
Xavier Gomez
July 4, 2014 at 6:40 pmThis idea already appeared somewhere in the cow forums, but thanks for posting.
On a side-note, it is hard to understand why the Write-on effect is so desperatingly s-l-o-w when lowering the (temporal) brush spacing. 0.001 corresponds to 1000 particles/sec, it is not that much. Paticular can handle 1000 x that and doesnt freeze like Write-on…
Reply to this Discussion! Login or Sign Up