From 36509ea1a476b30f17b3436edd7f524861257389 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 6 Oct 2010 15:21:15 +0000 Subject: removed skydome support, corrected skybox edge issue --- src/model/vertexarray.cc | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'src/model') diff --git a/src/model/vertexarray.cc b/src/model/vertexarray.cc index 67a13aa..ee311ac 100644 --- a/src/model/vertexarray.cc +++ b/src/model/vertexarray.cc @@ -98,32 +98,6 @@ void VertexArray::add_sphere() quad_count--; } - - // add inside-out sphere - for (int j = 0; j < (SPHERESEGMENTS - 1) / 2; j++) { - - float r = sintable[j]; - float r1 = sintable[j+1]; - - - for (int i = SPHERESEGMENTS - 1 ; i >= 0; i--) { - v = math::Vector3f(r * costable[i], r * sintable[i], costable[j]); - n = v; - n.normalize(); - texx = 1 - (float)i / (float)(SPHERESEGMENTS - 1); - texy = -costable[j] / 2 + 0.5f; - add_vertex(v, n, texx, texy); - - v = math::Vector3f(r1 * costable[i], r1 * sintable[i], costable[j+1]); - n = v; - n.normalize(); - texx = 1 - (float)i / (float)(SPHERESEGMENTS - 1); - texy = -costable[j+1] / 2 + 0.5f; - add_vertex(v, n, texx, texy); - } - - } - delete[] sintable; delete[] costable; } -- cgit v1.2.3