From 83d0c2fa0bd2e96448f776144e1a89cdb1bb6998 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Fri, 16 Aug 2019 18:22:19 -0400 Subject: [PATCH] Save version table. --- Grid.java | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Grid.java b/Grid.java index f607c0d..f4023e6 100644 --- a/Grid.java +++ b/Grid.java @@ -4,7 +4,7 @@ Grid() { - this(35, 34); + this(36, 36); } Grid(int u, int v) @@ -62,9 +62,19 @@ */ } + double uStretch() + { + return 1; + } + + double vFlip(double v) + { + return 1-v; + } + 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