flax.asd @ 386728efe61c

Finish switching to 3d-vectors (really!)
author Steve Losh <steve@stevelosh.com>
date Sat, 14 Apr 2018 01:12:37 -0400
parents ebe16cb914fb
children 4f1a10f25245
(asdf:defsystem :flax
  :description "Weaving art from seeds."

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

  :depends-on (

               :sb-cga ; for lofi-tri only
               :cl-pcg
               :cl-svg
               :cl-vectors
               :chancery
               :iterate
               :losh
               :zpng
               :3d-vectors
               :3d-matrices

               )

  :serial t
  :components
  ((:module "vendor" :serial t
    :components ((:file "quickutils-package")
                 (:file "quickutils")
                 (:module "lofi-tri"
                  :components ((:file "lofi.tri")))))
   (:file "package")
   (:module "src" :serial t
    :components
    ((:file "base")
     (:file "colors")
     (:file "transform")
     (:module "drawing" :serial t
      :components ((:file "api")
                   (:file "png")
                   (:file "svg")
                   (:file "plot")))
     (:module "looms" :serial nil
      :components
      ((:file "001-triangles")
       (:file "002-wobbly-lines")
       (:file "003-basic-l-systems")
       (:file "004-turtle-curves")
       (:file "005-simple-triangulations")
       (:file "006-tracing-lines")
       (:file "007-stippling")))))))