aboutsummaryrefslogtreecommitdiff
path: root/src/Board.elm
diff options
context:
space:
mode:
authorJoris Guyonvarch2014-09-02 21:35:58 +0200
committerJoris Guyonvarch2014-09-02 21:35:58 +0200
commitc4ae3b0ee4bd338995cfecf34e0aeb49f05fa70e (patch)
tree71530e9e2cfcbe888cb086593ea1e4d0bcc269a6 /src/Board.elm
downloadcatchvoid-c4ae3b0ee4bd338995cfecf34e0aeb49f05fa70e.tar.gz
catchvoid-c4ae3b0ee4bd338995cfecf34e0aeb49f05fa70e.tar.bz2
catchvoid-c4ae3b0ee4bd338995cfecf34e0aeb49f05fa70e.zip
Initial commit
Diffstat (limited to 'src/Board.elm')
-rw-r--r--src/Board.elm15
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)