Move from github, collapse gltk and strictmath, add candle
[clnl] / src / main / strictmath / package.lisp
1 (defpackage #:strictmath (:use :common-lisp)
2  (:shadow #:sin #:cos)
3  (:export #:to-radians #:sin #:cos)
4  (:documentation "Main strictmath package.
5
6 Strictmath is a pure common lisp implementation of Java's StrictMath class,
7 for only those functions as needed by CLNL to match NetLogo's output, and only
8 for doubles.  It should provide portable results for those functions that it
9 supports."))