From b7a83d8156b97c03000ba3b23e60bee653ba4ac8 Mon Sep 17 00:00:00 2001 From: LinlyBoi Date: Sun, 17 Mar 2024 13:24:30 +0200 Subject: [PATCH] epic variables --- mapLoad/mapLoad.pde | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mapLoad/mapLoad.pde b/mapLoad/mapLoad.pde index ad8eed8..1d4fb55 100644 --- a/mapLoad/mapLoad.pde +++ b/mapLoad/mapLoad.pde @@ -13,8 +13,8 @@ int dotWidth; int dotHeight; void setup() { size(1280, 726); - dotWidth = 4; - dotHeight = 4; + dotWidth = 40; + dotHeight = 40; // The background image must be the same size as the parameters // into the size() method. In this program, the size of the image // is 640 x 360 pixels. @@ -28,7 +28,7 @@ void draw() { } void loadData() { - + int colour = 255; for (TableRow row : coords.rows()) { float lng = row.getFloat("lng"); //value accessed by column name or index float ltd = row.getFloat("ltd");