Files
test/intern/itasc/WorldObject.cpp
Campbell Barton 77617fce77 Revert "Cleanup: make format."
This reverts commit 06b8ddca8f.

Add ".clang-format" which prevents these files from being formatted.

Commit [0] missed adding this file.

[0]: f43da6fc4c
2024-09-20 19:46:56 +10:00

28 lines
425 B
C++

/* SPDX-FileCopyrightText: 2009 Benoit Bolsee
*
* SPDX-License-Identifier: LGPL-2.1-or-later */
/** \file
* \ingroup intern_itasc
*/
#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()
{
}
}