diff options
author | Joris Guyonvarch | 2014-09-02 21:35:58 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2014-09-02 21:35:58 +0200 |
commit | c4ae3b0ee4bd338995cfecf34e0aeb49f05fa70e (patch) | |
tree | 71530e9e2cfcbe888cb086593ea1e4d0bcc269a6 /src/Board.elm |
Initial commit
Diffstat (limited to 'src/Board.elm')
-rw-r--r-- | src/Board.elm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Board.elm b/src/Board.elm new file mode 100644 index 0000000..fa544d8 --- /dev/null +++ b/src/Board.elm @@ -0,0 +1,15 @@ +module Board where + +import Vec2 (Vec2) + +boardSize : Vec2 +boardSize = + { x = 500 + , y = 500 + } + +boardDiagonal : Float +boardDiagonal = + let x = boardSize.x + y = boardSize.y + in sqrt(x^2 + y^2) |