|
Lira Nikolovska
|
|
Josef Albers, Bundled, 1926
|
![]() |
|
|
![]() |
|
|
function for drawing red, black and white rectangles
(defun drawrect (x y width height)
(list (+ x width) y) (list (+ x width) (+ y height)) ""
|
|
Variation scaled squares
Variation scaled and rotated squares
|
![]() |
|
|
function for drawing square (defun square (p1 radius)
(setq x1 0) (setq y1 0)
|
|
|
control statement: reduce radius of previous square, make new square and rotate it 5 degrees
(setq count 0)
(square p1 radius) (command "rotate" "last" "" (list 0 0) (+ count 5) ) (setq count (+ count 5))
|
|