5#ifndef DCPP_I_MESH_SCENE_NODE_HPP_INCLUDED
6#define DCPP_I_MESH_SCENE_NODE_HPP_INCLUDED
8#include <duckcpp/core/engine/ISceneNode.hpp>
15class IShadowVolumeSceneNode;
31 :
ISceneNode(parent, mgr, id, position, rotation, scale) {}
3d vector template class with lots of operators and methods.
Definition vector3d.hpp:32
A scene node displaying a static mesh.
Definition IMeshSceneNode.hpp:21
virtual IShadowVolumeSceneNode * addShadowVolumeSceneNode(const IMesh *shadowMesh=0, dcpp::int32_kt id=-1, bool zfailmethod=true, dcpp::float32_kt infinity=1000.0f)=0
IMeshSceneNode(ISceneNode *parent, ISceneManager *mgr, dcpp::int32_kt id, const dcpp::nub::vector3df &position=dcpp::nub::vector3df(0, 0, 0), const dcpp::nub::vector3df &rotation=dcpp::nub::vector3df(0, 0, 0), const dcpp::nub::vector3df &scale=dcpp::nub::vector3df(1, 1, 1))
Constructor.
Definition IMeshSceneNode.hpp:27
virtual IMesh * getMesh(void)=0
Get the currently defined mesh for display.
virtual bool isReadOnlyMaterials() const =0
Check if the scene node should not copy the materials of the mesh but use them in a read only style.
virtual void setReadOnlyMaterials(bool readonly)=0
Sets if the scene node should not copy the materials of the mesh but use them in a read only style.
virtual void setMesh(IMesh *mesh)=0
Sets a new mesh to display.
Class which holds the geometry of an object.
Definition IMesh.hpp:72
The Scene Manager manages scene nodes, mesh resources, cameras and all the other stuff.
Definition ISceneManager.hpp:160
Scene node interface.
Definition ISceneNode.hpp:43
Scene node for rendering a shadow volume into a stencil buffer.
Definition IShadowVolumeSceneNode.hpp:34
As of Duckcpp 1.6, position2d is a synonym for vector2d.
Definition shared_device.hpp:34
float float32_kt
32 bit floating point variable.
Definition irrTypes.hpp:108
signed int int32_kt
32 bit signed variable.
Definition irrTypes.hpp:72