From 3725c16fa91d24d45f2dba620e85b97e30bffc59 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Wed, 11 Jul 2018 19:56:11 +0200 Subject: [PATCH] Changed values of rotation to better match what we want with isometric view. --- public/sketch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/sketch.js b/public/sketch.js index 46b8a86..89c80d3 100644 --- a/public/sketch.js +++ b/public/sketch.js @@ -13,8 +13,8 @@ function draw() { background(220); ortho(-700, 700, 700, -700, 0, 1200); - rotateX(-QUARTER_PI); - rotateY(ma); + rotateX(-ma); + rotateY(QUARTER_PI); rectMode(CENTER);