Skip to content

Commit

Permalink
Remove stipple debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
lispnik committed Aug 7, 2021
1 parent 95d4719 commit c642317
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/canvas.lisp
Expand Up @@ -11,11 +11,11 @@
(defparameter *canvas* nil)

(defun canvas-redraw (handle x y)
(declare (ignore handle x y))
(cd:activate *canvas*)
(multiple-value-bind (w h)
(cd:size *canvas*)
(cd:clear *canvas*)
(print (cd:stipple *canvas*))
(let ((stipple (make-array '(100 100) :element-type 'bit)))
(loop for i below 100
do (loop for j below 100
Expand All @@ -26,7 +26,6 @@
(cd:foreground *canvas*) cd:+red+)
(cd:sector *canvas* (* 1/2 w) (* 1/2 h) (* 1/4 w) (* 1/4 h) 0 360)
(cd:flush *canvas*))

iup:+default+)

(defun canvas-map (handle)
Expand Down

0 comments on commit c642317

Please sign in to comment.