mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-05 18:00:41 +01:00
51 lines
1.8 KiB
C
51 lines
1.8 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_MESH_MANIPULATOR_H_INCLUDED__
|
||
|
#define __C_MESH_MANIPULATOR_H_INCLUDED__
|
||
|
|
||
|
#include "IMeshManipulator.h"
|
||
|
|
||
|
namespace irr
|
||
|
{
|
||
|
namespace scene
|
||
|
{
|
||
|
|
||
|
//! An interface for easy manipulation of meshes.
|
||
|
/** Scale, set alpha value, flip surfaces, and so on. This exists for fixing
|
||
|
problems with wrong imported or exported meshes quickly after loading. It is
|
||
|
not intended for doing mesh modifications and/or animations during runtime.
|
||
|
*/
|
||
|
class CMeshManipulator : public IMeshManipulator
|
||
|
{
|
||
|
public:
|
||
|
//! Recalculates all normals of the mesh.
|
||
|
/** \param mesh: Mesh on which the operation is performed.
|
||
|
\param smooth: Whether to use smoothed normals. */
|
||
|
virtual void recalculateNormals(scene::IMesh* mesh, bool smooth = false, bool angleWeighted = false) const _IRR_OVERRIDE_;
|
||
|
|
||
|
//! Recalculates all normals of the mesh buffer.
|
||
|
/** \param buffer: Mesh buffer on which the operation is performed.
|
||
|
\param smooth: Whether to use smoothed normals. */
|
||
|
virtual void recalculateNormals(IMeshBuffer* buffer, bool smooth = false, bool angleWeighted = false) const _IRR_OVERRIDE_;
|
||
|
|
||
|
//! Clones a static IMesh into a modifiable SMesh.
|
||
|
virtual SMesh* createMeshCopy(scene::IMesh* mesh) const _IRR_OVERRIDE_;
|
||
|
|
||
|
//! Returns amount of polygons in mesh.
|
||
|
virtual s32 getPolyCount(scene::IMesh* mesh) const _IRR_OVERRIDE_;
|
||
|
|
||
|
//! Returns amount of polygons in mesh.
|
||
|
virtual s32 getPolyCount(scene::IAnimatedMesh* mesh) const _IRR_OVERRIDE_;
|
||
|
|
||
|
//! create a new AnimatedMesh and adds the mesh to it
|
||
|
virtual IAnimatedMesh * createAnimatedMesh(scene::IMesh* mesh,scene::E_ANIMATED_MESH_TYPE type) const _IRR_OVERRIDE_;
|
||
|
};
|
||
|
|
||
|
} // end namespace scene
|
||
|
} // end namespace irr
|
||
|
|
||
|
|
||
|
#endif
|