From 24a2a946b35279605e645349bd6b82e9e60aac88 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Wed, 14 Aug 2019 23:35:34 -0400 Subject: [PATCH] Fix textures in jar. --- Camera.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Camera.java b/Camera.java index f5243d4..c2d8efa 100644 --- a/Camera.java +++ b/Camera.java @@ -20,7 +20,7 @@ //<-2.2,0.7,-2> and pointed it at <-0.61,0.3,-0.6> // location = LA.newVector(2,0.7,-2); // lookAt = new cVector(0.6,0.3,-0.6); - location = LA.newVector(3,2,2); + location = LA.newVector(6,2,4); lookAt = new cVector(0.0,0.5,0); direction = new cVector(); toParent = LA.newMatrix(); @@ -71,7 +71,7 @@ perspective = false; break; case 4: // Default light - location = LA.newVector(10, 30, 20); + location = LA.newVector(-10, 30, 20); perspective = false; break; } -- Gitblit v1.6.2