Created
August 22, 2020 13:22
-
-
Save blad/fe5d21c2c6fe704122bccf83830e19d6 to your computer and use it in GitHub Desktop.
Ronin Transparent Lines Wallpaper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def background "#242424") | |
(def dark "#72dec211") | |
(def light "#72dec222") | |
(def segment:l 400) | |
(def segment:shift 2) | |
(def screeen:w 1280) | |
(def screeen:h 800) | |
(defn draw-segment | |
(c) | |
(stroke | |
(line 0 0 segment:l segment:l) c)) | |
(defn get-color | |
(n) | |
(if | |
(eq 0 | |
(mod n 2)) light dark)) | |
(defn go | |
(n) | |
(if | |
(gt n 0) | |
( | |
(draw-segment | |
(get-color n)) | |
(transform:push) | |
(transform:move segment:shift 0) | |
(go | |
(sub n 1)) | |
(transform:pop)))) | |
(clear) | |
(resize screen:w screen:h) | |
(transform:push) | |
(fill | |
(get-frame) background) | |
(transform:move 50 20) | |
(each (range 0 12) (λ (x) ( | |
(transform:move 0 10) | |
(go 1000) | |
(transform:rotate .03) | |
))) | |
(transform:reset) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment