coding-math.asd @ e05ab7ec7e6c default tip

Remove some of the bitrot.  It still doesn't really work.
author Steve Losh <steve@stevelosh.com>
date Mon, 07 Jan 2019 18:25:15 -0500
parents 085ab1bb07c6
children (none)
(asdf:defsystem #:coding-math
  :name "coding-math"
  :description "Working through the Coding Math videos."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "0.0.1"

  :depends-on (#:defstar
               #:optima
               #:sketch
               #:iterate
               #:sb-cga
               #:trivial-types
               #:cl-arrows
               #:losh
               #:fare-quasiquote-optima
               #:fare-quasiquote-readtable)

  :serial t
  :components
  ((:file "quickutils") ; quickutils package ordering crap
   (:file "package")
   (:module "src"
    :serial t
    :components ((:file "utils")
                 (:file "math")
                 (:file "fps")
                 (:file "tween")
                 (:file "vectors")
                 (:module "2d"
                  :serial t
                  :components ((:file "vectors")
                               (:file "hitboxes")
                               (:file "particles")
                               (:file "points")
                               (:file "lines")
                               (:file "demo")
                               (:file "ballistics")))
                 (:module "3d"
                  :serial t
                  :components ((:file "vectors")
                               (:file "coordinates")
                               (:file "demo")))))))