graphics

Common Lisp graphics experiment
git clone git://git.entf.net/graphics
Log | Files | Refs

package.lisp (562B)


      1 (defpackage #:net.entf.graphics/draw/protocol
      2   (:use #:cl)
      3   (:export
      4    #:pixel-p
      5    #:pixel
      6    #:color
      7    #:make-color
      8    #:point
      9    #:point-width
     10    #:point-height
     11    #:make-point
     12    #:point-x+
     13    #:point-x-
     14    #:point-y+
     15    #:point-y-
     16    #:size
     17    #:size-width
     18    #:size-height
     19    #:sheet
     20    #:sheet-size
     21    #:sheet-width
     22    #:sheet-height
     23    #:brush
     24    #:solid-color-brush
     25    #:make-solid-color-brush
     26    #:path
     27    #:make-path
     28    #:straight-line
     29    #:make-straight-line
     30    #:arc
     31    #:make-arc
     32    #:with-path
     33    #:fill-path
     34    #:fill-rect
     35    #:fill-circle))