# HG changeset patch # User michael # Date 1161023804 0 # Node ID edda4c177c594e43bd4e928d96e095b798e68dff # Parent ffe1b004ecc7b5672f3c5797a038475f8302919f asin() acos() atan() diff -r ffe1b004ecc7 -r edda4c177c59 eval.c --- a/eval.c Mon Oct 16 17:44:29 2006 +0000 +++ b/eval.c Mon Oct 16 18:36:44 2006 +0000 @@ -170,6 +170,9 @@ 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));