medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 6fd1c10366b2182de5d6027fcbfdea882a9a3a19
parent 88b8291e6289f365e8d074f10fda15e469d9380b
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed Jul 22 23:14:07 +0200

Remove some test drawing code

Diffstat:
bsp.cc | 14--------------
1 file changed, 0 insertions(+), 14 deletions(-)
diff --git a/bsp.cc b/bsp.cc @@ -262,20 +262,6 @@ int main() { BSP_Renderer::render( bsp, start ); - const glm::vec3 test( 353.553, -453.553, 450.000 ); - glColor3f( 1, 1, 1 ); - glLineWidth( 2 ); - glBegin( GL_LINES ); - glVertex3f( test.x, test.y, test.z + 10 ); - glVertex3f( test.x, test.y, test.z - 10 ); - - glVertex3f( test.x, test.y + 10, test.z ); - glVertex3f( test.x, test.y - 10, test.z ); - - glVertex3f( test.x + 10, test.y, test.z ); - glVertex3f( test.x - 10, test.y, test.z ); - glEnd(); - glLoadIdentity(); glBegin( GL_TRIANGLE_STRIP );