summaryrefslogtreecommitdiff
path: root/package.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'package.lisp')
-rw-r--r--package.lisp18
1 files changed, 18 insertions, 0 deletions
diff --git a/package.lisp b/package.lisp
new file mode 100644
index 0000000..90661e3
--- /dev/null
+++ b/package.lisp
@@ -0,0 +1,18 @@
+;;;; package.lisp
+;;;; Copyright (C) 2017 Bruno Cichon <ebrasca.ebrasca@openmailbox.org>
+;;;; This code is licensed under the GPLv3 license.
+
+(defpackage #:turtle-graphics
+ (:use #:cl #:iterate :rtg-math)
+ (:export #:turtle
+ ;;extrude
+ #:forward
+ ;;rotation
+ #:roll
+ #:pitch
+ #:yaw
+ ;;other
+ #:make-geometry
+ #:circle
+ #:push-turtle
+ #:pop-turtle))