Main strictmath package.
Strictmath is a pure common lisp implementation of Java's StrictMath class, for only those functions as needed by CLNL to match NetLogo's output, and only for doubles. It should provide portable results for those functions that it supports.
cos x => result
x---A double representing the angle in radians bounded from [0, 2pi] result---A double representing the cos of the angle
cos returns the cos of the angle x.
sin x => result
x---A double representing the angle in radians bounded from [0, 2pi] result---A double representing the sin of the angle
sin returns the sin of the angle x.
to-radians deg => rad
deg---A double representing the angle in degrees rad---A double representing the angle in radians
to-radians returns the radians equivalent of the angle passed in, in degrees.