Blender V2.61 - r43446
|
00001 00004 /* 00005 * WorldObject.cpp 00006 * 00007 * Created on: Feb 10, 2009 00008 * Author: benoitbolsee 00009 */ 00010 00011 #include "WorldObject.hpp" 00012 00013 namespace iTaSC{ 00014 00015 /* special singleton to be used as base for uncontrolled object */ 00016 WorldObject Object::world; 00017 00018 WorldObject::WorldObject():UncontrolledObject() 00019 { 00020 initialize(0,1); 00021 m_internalPose = Frame::Identity(); 00022 } 00023 00024 WorldObject::~WorldObject() 00025 { 00026 } 00027 00028 00029 }