This seems to contain documentation for each individual function, but comprehensive examples of each function do not appear to exist in any documentation on the Internet. The only way I was able to find working code is through Google's actual function names and a careful review of each result for possible code samples.
In any case, to satisfy your question and give you a simple example of how this library works, here is a sample code.
(let ((device (make-graphics-device (car (enumerate-graphics-types)))) (x-start 0) (y-start 0) (x-end 5) (y-end 5)) (graphics-draw-line device x-start y-start x-end y-end) (graphics-close device))
If you need more samples, let me know, but there should be enough code and documents to get you started.
source share