blender/intern/itasc/WorldObject.cpp
Campbell Barton de13d0a80c doxygen: add newline after \file
While \file doesn't need an argument, it can't have another doxy
command after it.
2019-02-18 08:22:12 +11:00

30 lines
428 B
C++

/** \file itasc/WorldObject.cpp
* \ingroup itasc
*/
/*
* 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()
{
}
}