From 452021d2cb82d02baab0d54b6e3f585c07cff518 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Wed, 20 Jul 2022 13:27:15 -0500 Subject: [example] tweaking --- examples/12-canvas-drawing-language.lisp | 39 ++++++++++++++++---------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/examples/12-canvas-drawing-language.lisp b/examples/12-canvas-drawing-language.lisp index 43d2dea..dcc557d 100644 --- a/examples/12-canvas-drawing-language.lisp +++ b/examples/12-canvas-drawing-language.lisp @@ -53,25 +53,26 @@ ;; draws a "flower" like pinwheel using bezier curves (defun flower (&optional (petals 5)) - (ww::canvas-pen-width 1) - (let ((r ; radius - (sqrt (+ (* 25 25) (* 100 100)))) - (psw ; petal semi-width - (* pi 0.08))) - ;; for each angle a between 0 and 2π draw a petal as a bezier - ;; curve. the curve uses two control points that are R away from - ;; the starting point and PSW radians on either side of the line - ;; at angle a - (loop for a from 0 to (* 2 pi) by (/ (* 2 pi) petals) - for ls = (list (list (* r (sin (- a psw))) - (* r (cos (- a psw)))) - (list (* r (sin (+ a psw))) - (* r (cos (+ a psw)))) - (list 0 0)) - do - (ww::fill-rel-bezier ls 12) - (ww::with-pen (:color (list 0 0 0 255) :width 1) - (ww::stroke-rel-bezier ls 12))))) + (ww::with-pen (:width 1) + (let ((r ; radius + (sqrt (+ (* 25 25) (* 100 100)))) + (psw ; petal semi-width + (* pi 0.08))) + ;; for each angle a between 0 and 2π draw a petal as a bezier + ;; curve. the curve uses two control points that are R away from + ;; the starting point and PSW radians on either side of the line + ;; at angle a + (loop for a from 0 to (* 2 pi) by (/ (* 2 pi) petals) + for ls = (list (list (* r (sin (- a psw))) + (* r (cos (- a psw)))) + (list (* r (sin (+ a psw))) + (* r (cos (+ a psw)))) + (list 0 0)) + do + (ww::fill-rel-bezier ls 12) + ;; draw border of each petal + (ww::with-pen (:color (list 0 50 200 255)) + (ww::stroke-rel-bezier ls 12)))))) (defun draw-stuff (canvas) (ww::with-canvas canvas -- cgit v1.2.3