Skip to content

Instantly share code, notes, and snippets.

View pkobrien's full-sized avatar

Patrick K. O'Brien pkobrien

View GitHub Profile
@pkobrien
pkobrien / turtle-demo.cljs
Created September 14, 2015 13:33
Turtle Demo
;; Draws a simple pentagon and other geometric stars using turtle graphics
;;
;; Scale it to fit in a bounding-box of 750x550 px
(ns turtle.demo
(:use [turtle.core :only [draw!]]
[turtle.renderer.canvas :only [->canvas]]
[jayq.core :only [show]]
[enchilada :only [ctx canvas]]))