mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-03 00:40:41 +01:00
8310a3fbad
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6000 dfc29bdd-3216-0410-991c-e03cc46cb475
63 lines
2.1 KiB
C++
63 lines
2.1 KiB
C++
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
#ifndef __C_DUMMY_TRANSFORMATION_SCENE_NODE_H_INCLUDED__
|
|
#define __C_DUMMY_TRANSFORMATION_SCENE_NODE_H_INCLUDED__
|
|
|
|
#include "IDummyTransformationSceneNode.h"
|
|
|
|
namespace irr
|
|
{
|
|
namespace scene
|
|
{
|
|
|
|
class CDummyTransformationSceneNode : public IDummyTransformationSceneNode
|
|
{
|
|
public:
|
|
|
|
//! constructor
|
|
CDummyTransformationSceneNode(ISceneNode* parent, ISceneManager* mgr, s32 id);
|
|
|
|
//! returns the axis aligned bounding box of this node
|
|
virtual const core::aabbox3d<f32>& getBoundingBox() const _IRR_OVERRIDE_;
|
|
|
|
//! Returns a reference to the current relative transformation matrix.
|
|
//! This is the matrix, this scene node uses instead of scale, translation
|
|
//! and rotation.
|
|
virtual core::matrix4& getRelativeTransformationMatrix() _IRR_OVERRIDE_;
|
|
|
|
//! Returns the relative transformation of the scene node.
|
|
virtual core::matrix4 getRelativeTransformation() const _IRR_OVERRIDE_;
|
|
|
|
//! does nothing.
|
|
virtual void render() _IRR_OVERRIDE_ {}
|
|
|
|
//! Returns type of the scene node
|
|
virtual ESCENE_NODE_TYPE getType() const _IRR_OVERRIDE_ { return ESNT_DUMMY_TRANSFORMATION; }
|
|
|
|
//! Creates a clone of this scene node and its children.
|
|
virtual ISceneNode* clone(ISceneNode* newParent=0, ISceneManager* newManager=0) _IRR_OVERRIDE_;
|
|
|
|
|
|
private:
|
|
|
|
// TODO: We can add least add some warnings to find troubles faster until we have
|
|
// fixed bug id 2318691.
|
|
virtual const core::vector3df& getScale() const _IRR_OVERRIDE_;
|
|
virtual void setScale(const core::vector3df& scale) _IRR_OVERRIDE_;
|
|
virtual const core::vector3df& getRotation() const _IRR_OVERRIDE_;
|
|
virtual void setRotation(const core::vector3df& rotation) _IRR_OVERRIDE_;
|
|
virtual const core::vector3df& getPosition() const _IRR_OVERRIDE_;
|
|
virtual void setPosition(const core::vector3df& newpos) _IRR_OVERRIDE_;
|
|
|
|
core::matrix4 RelativeTransformationMatrix;
|
|
core::aabbox3d<f32> Box;
|
|
};
|
|
|
|
} // end namespace scene
|
|
} // end namespace irr
|
|
|
|
#endif
|
|
|