flax.asd @ 148a6a1cc9eb

Add simple triangulations
author Steve Losh <steve@stevelosh.com>
date Tue, 06 Mar 2018 22:40:20 -0500
parents 7c7fc72df64c
children 630bc79afdfd
(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
               :iterate
               :losh
               :zpng

               )

  :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 "coordinates")
     (:file "colors")
     (:module "drawing" :serial t
      :components ((:file "api")
                   (:file "png")
                   (:file "svg")))
     (: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")))))))