view Renderer/Test/ball_action.cc @ 656:d0b8860c17f8

remove global variable "sgroot" , add SgChange.{cc, h} SgMain.cc SgRootChange.{cc, h}
author hiroki@henri.cr.ie.u-ryukyu.ac.jp
date Wed, 25 Nov 2009 21:56:14 +0900
parents 71b3363c16bf
children
line wrap: on
line source

#include <iostream>
#include "SceneGraphRoot.h"

using namespace std;

void
ball_move(SceneGraphPtr node, void *sgroot_, int w, int h)
{
    node->xyz[0] += 4;
}

void
ball_coll(SceneGraphPtr node, void *sgroot_, int w, int h, SceneGraphPtr tree)
{
    if (node->xyz[0] > 600) node->remove();
}