aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-07-26 20:37:23 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-07-26 20:46:34 +0100
commit08e890ee4ad21c9bfb0f0214923b675138ff1cd8 (patch)
tree427b670ba31356aad6b9c5757610323071ee3a3f /src/main.cpp
parent163f1e691a4364d959d320aa429e537aed50e162 (diff)
downloadcw_tree-08e890ee4ad21c9bfb0f0214923b675138ff1cd8.tar.gz
cw_tree-08e890ee4ad21c9bfb0f0214923b675138ff1cd8.tar.bz2
cw_tree-08e890ee4ad21c9bfb0f0214923b675138ff1cd8.zip
Define some constants and include a ton of stuff
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 440e4e1..87dec24 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -14,10 +14,23 @@
* Description: Entrypoint
*/
+#include "./numerics.hpp"
+
+#include <cmath>
#include <cstdio>
+#include <iostream>
+#include <sstream>
+#include <tuple>
+
#include <raylib.h>
-#include "./numerics.hpp"
+#define WIDTH 1024
+#define HEIGHT 1024
+#define FONT_SIZE 10
+#define CIRCLE_SIZE 2
+#define LINE_TOP (7 * HEIGHT / 16)
+#define LINE_BOTTOM (9 * HEIGHT / 16)
+
int main(void)
{