Add Licensing and Contributing
[clnl] / src / main / strictmath / package.lisp
1 ; Copyright 2022 Frank Duncan (frank@consxy.com) under AGPL3.  See distributed LICENSE.txt.
2 (defpackage #:strictmath (:use :common-lisp)
3  (:shadow #:sin #:cos)
4  (:export #:to-radians #:sin #:cos)
5  (:documentation "Main strictmath package.
6
7 Strictmath is a pure common lisp implementation of Java's StrictMath class,
8 for only those functions as needed by CLNL to match NetLogo's output, and only
9 for doubles.  It should provide portable results for those functions that it
10 supports."))