↧
OpenGL in Clojure
After much struggling I finally got a simple OpenGL example working in Clojure! Here’s a port of the JOGL example in Wikipedia to Clojure: ;This is a Clojure port of the JOGL example in...
View ArticleDrawing a Line Between Two Points
Drawing a line between two points is a perfect example of a function which most graphics libraries implement at a single scale: 1 pixel width. Here’s how to implement drawing a line with a specific...
View Article