coding-math.asd @ 29b2d3f28208

Episode 20: More Bezier Curves (A)
author Steve Losh <steve@stevelosh.com>
date Mon, 09 May 2016 00:18:57 +0000
parents 2278039315fa
children bf847793a69a
(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
               #:trivial-types
               #:cl-arrows
               #: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 "vectors")
                             (:file "particles")
                             (:file "points")
                             (:file "main")
                             (:file "ballistics")
                             ))))