Last active
January 3, 2016 23:28
-
-
Save MachinesAreUs/8534922 to your computer and use it in GitHub Desktop.
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
import Window | |
import Graphics.Collage | |
iterations = 8 | |
middle (x,y) (x',y') = ((x + x') / 2, (y + y') / 2) | |
set n idx [p1, p2, p3] = | |
let [a,b,c] = [middle p1 p2, middle p2 p3, middle p1 p3] | |
subTriangles = [ | |
[p1, a, c], | |
[a, p2, b], | |
[c, b, p3] | |
] | |
in if | idx < n -> [a,b,c] :: (concat (map (set n (idx + 1)) subTriangles)) | |
| otherwise -> [] | |
sierpinski (w,h) = | |
let side = 0.8 * min (toFloat w) (toFloat h) | |
mainTriangle = [(0,0), (side * cos (pi / 3), side * sin (pi / 3)), (side,0)] | |
center f = move (-side / 2, tan (pi / 6) * -side / 2) f | |
in collage w h | |
<| map center | |
<| (mainTriangle |> filled blue) :: | |
(set iterations 0 mainTriangle |> map (filled white)) | |
main = lift sierpinski Window.dimensions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment