summaryrefslogtreecommitdiff
path: root/package.lisp
blob: ff513c9ef156e08daf9071c3a4134555df7e6024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;;; 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
           #:jump
           ;;rotation
           #:roll
           #:pitch
           #:yaw
           ;;other
           #:make-geometry
           #:circle
           #:push-turtle
           #:pop-turtle
           #:set-radius))