From f2b6a33fdf84a06b958f9cb9d667a2eff3063d8b Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Wed, 24 Jul 2019 23:50:40 -0400 Subject: [PATCH] Camera global inverse. --- Grid.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Grid.java b/Grid.java index f607c0d..e8b144a 100644 --- a/Grid.java +++ b/Grid.java @@ -4,7 +4,7 @@ Grid() { - this(35, 34); + this(36, 36); } Grid(int u, int v) @@ -64,7 +64,7 @@ Vertex biparamFunction(double u, double v) { - Vertex temp = new Vertex((2*v-1)*radius*8, 0 /*-radius,*/, (2*u-1)*radius*8); + Vertex temp = new Vertex((2*v-1)*radius*4, 0 /*-radius,*/, (2*u-1)*radius*4); temp.norm = LA.newVector(0,1,0); return temp; } -- Gitblit v1.6.2