This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/intern/itasc/WorldObject.cpp
2009-09-25 01:13:07 +00:00

27 lines
379 B
C++

/* $Id$
* WorldObject.cpp
*
* Created on: Feb 10, 2009
* Author: benoitbolsee
*/
#include "WorldObject.hpp"
namespace iTaSC{
/* special singleton to be used as base for uncontrolled object */
WorldObject Object::world;
WorldObject::WorldObject():UncontrolledObject()
{
initialize(0,1);
m_internalPose = Frame::Identity();
}
WorldObject::~WorldObject()
{
}
}