From 227256d6c3c633982a7e7bc1dd224c4f43765b42 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Fri, 9 Dec 2016 17:36:12 +0200 Subject: [PATCH] placed the blobs on the empty stand --- src/app.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app.cc b/src/app.cc index e135ddf..d126635 100644 --- a/src/app.cc +++ b/src/app.cc @@ -119,7 +119,7 @@ bool app_init(int argc, char **argv) blobs = new BlobExhibit; blobs->node = new SceneNode; blobs->init(); - blobs->node->set_position(Vec3(-250, 150, 250)); + blobs->node->set_position(Vec3(-680, 150, -100)); blobs->node->set_scaling(Vec3(20, 20, 20)); blobs->node->update(0); @@ -584,10 +584,10 @@ static void calc_framerate() nframes = 1; prev_upd = time_msec; - if(++ncalc >= 5) { + /*if(++ncalc >= 5) { printf("fps: %f\n", framerate); ncalc = 0; - } + }*/ } else { ++nframes; } -- 1.7.10.4