package.lisp @ 2cb0d67b2cfa

Fuckin idiot
author Steve Losh <steve@stevelosh.com>
date Sun, 04 Feb 2018 00:51:37 -0500
parents d3a901ef3501
children fbdceb03ce0e
(defpackage :flax.base
  (:use :cl :iterate :losh :flax.quickutils)
  (:export :rand :with-seed))

(defpackage :flax.coordinates
  (:use :cl :iterate :losh :flax.base :flax.quickutils)
  (:export
    :coord :x :y
    :distance
    :clerp))

(defpackage :flax.drawing
  (:use :cl :iterate :losh :flax.base :flax.quickutils
    :flax.coordinates)
  (:export
    :with-rendering
    :render
    :triangle
    :path))


(defpackage :flax.looms.001-triangles
  (:use :cl :iterate :losh :flax.base :flax.quickutils
    :flax.coordinates)
  (:export :loom))

(defpackage :flax.looms.002-wobbly-lines
  (:use :cl :iterate :losh :flax.base :flax.quickutils
    :flax.coordinates)
  (:export :loom))