Skip to content

Commit

Permalink
make really big images
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Jan 10, 2020
1 parent 96b7d8b commit ac526cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Main.elm
Expand Up @@ -47,7 +47,7 @@ init : () -> ( Model, Cmd Msg )
init _ =
let
image =
Image.recurse
Image.bars

windowSize =
{ width = 3, height = 3 }
Expand Down Expand Up @@ -208,6 +208,7 @@ view model =
, Html.button [ Events.onClick (Reset { width = 5, height = 5 }) ] [ Html.text "Reset (5x5)" ]
, Html.button [ Events.onClick (Reset { width = 10, height = 10 }) ] [ Html.text "Reset (10x10)" ]
, Html.button [ Events.onClick (Reset { width = 20, height = 20 }) ] [ Html.text "Reset (20x20)" ]
, Html.button [ Events.onClick (Reset { width = 50, height = 50 }) ] [ Html.text "Reset (50x50)" ]
, Wave.view
(\indexes ->
let
Expand Down

0 comments on commit ac526cc

Please sign in to comment.