medfall

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

commit f620dab8ef28d01a21df0412385882fe9b82a826
parent ace5617bf8f44fee9d735660200e5ade1c0d750c
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed Sep 16 17:46:46 +0100

Slightly cleaner

Diffstat:
btt.cc | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/btt.cc b/btt.cc @@ -246,10 +246,11 @@ static void draw_btt( const glm::ivec2 iv0, const glm::ivec2 iv1, const glm::ivec2 iv2 ) { const glm::vec4 white( 1, 1, 1, 1 ); + const glm::vec3 offset( 0.0f, 0.0f, 0.5f ); - const glm::vec3 v0( hm->point( iv0.x, iv0.y ) + glm::vec3( 0.0f, 0.0f, 0.5f ) ); - const glm::vec3 v1( hm->point( iv1.x, iv1.y ) + glm::vec3( 0.0f, 0.0f, 0.5f ) ); - const glm::vec3 v2( hm->point( iv2.x, iv2.y ) + glm::vec3( 0.0f, 0.0f, 0.5f ) ); + const glm::vec3 v0( hm->point( iv0.x, iv0.y ) + offset ); + const glm::vec3 v1( hm->point( iv1.x, iv1.y ) + offset ); + const glm::vec3 v2( hm->point( iv2.x, iv2.y ) + offset ); if( btt->left ) { assert( btt->right );