Commit 10dc0da7 authored by michael's avatar michael

asin() acos() atan()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6712 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 00150354
......@@ -170,6 +170,9 @@ static double evalPrimary(Parser *p){
else if( strmatch(next, "sin" ) ) d= sin(d);
else if( strmatch(next, "cos" ) ) d= cos(d);
else if( strmatch(next, "tan" ) ) d= tan(d);
else if( strmatch(next, "atan" ) ) d= atan(d);
else if( strmatch(next, "asin" ) ) d= asin(d);
else if( strmatch(next, "acos" ) ) d= acos(d);
else if( strmatch(next, "exp" ) ) d= exp(d);
else if( strmatch(next, "log" ) ) d= log(d);
else if( strmatch(next, "squish") ) d= 1/(1+exp(4*d));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment