summaryrefslogtreecommitdiff
path: root/src/wieldmesh.h
diff options
context:
space:
mode:
authorLoïc Blot <loic.blot@unix-experience.fr>2017-04-06 15:37:02 +0200
committerLoïc Blot <loic.blot@unix-experience.fr>2017-04-06 15:37:02 +0200
commitbe0663696514dd3d3525949be7c317c9eae9dbb0 (patch)
tree22931ce0a8e93337efd0639c050d4529951216da /src/wieldmesh.h
parent00138a52d892b6f07d6f6d70c27bb9c61ee191c3 (diff)
downloadminetest-be0663696514dd3d3525949be7c317c9eae9dbb0.tar.gz
minetest-be0663696514dd3d3525949be7c317c9eae9dbb0.tar.bz2
minetest-be0663696514dd3d3525949be7c317c9eae9dbb0.zip
Clang-format continuation indent fixes + .gitignore additions
* Proper support for continuation indents in clang format * make src/wieldmesh.h proper and remove it from whitelist * Add CLion default build directories in .gitignore
Diffstat (limited to 'src/wieldmesh.h')
-rw-r--r--src/wieldmesh.h20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/wieldmesh.h b/src/wieldmesh.h
index 2e78232ae..200587058 100644
--- a/src/wieldmesh.h
+++ b/src/wieldmesh.h
@@ -20,8 +20,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#ifndef WIELDMESH_HEADER
#define WIELDMESH_HEADER
-#include "irrlichttypes_extrabloated.h"
#include <string>
+#include "irrlichttypes_extrabloated.h"
struct ItemStack;
class Client;
@@ -31,30 +31,27 @@ struct TileSpec;
/*
Wield item scene node, renders the wield mesh of some item
*/
-class WieldMeshSceneNode: public scene::ISceneNode
+class WieldMeshSceneNode : public scene::ISceneNode
{
public:
WieldMeshSceneNode(scene::ISceneNode *parent, scene::ISceneManager *mgr,
s32 id = -1, bool lighting = false);
virtual ~WieldMeshSceneNode();
- void setCube(const TileSpec tiles[6],
- v3f wield_scale, ITextureSource *tsrc);
- void setExtruded(const std::string &imagename,
- v3f wield_scale, ITextureSource *tsrc, u8 num_frames);
+ void setCube(const TileSpec tiles[6], v3f wield_scale, ITextureSource *tsrc);
+ void setExtruded(const std::string &imagename, v3f wield_scale,
+ ITextureSource *tsrc, u8 num_frames);
void setItem(const ItemStack &item, Client *client);
// Sets the vertex color of the wield mesh.
// Must only be used if the constructor was called with lighting = false
void setColor(video::SColor color);
- scene::IMesh *getMesh()
- { return m_meshnode->getMesh(); }
+ scene::IMesh *getMesh() { return m_meshnode->getMesh(); }
virtual void render();
- virtual const aabb3f &getBoundingBox() const
- { return m_bounding_box; }
+ virtual const aabb3f &getBoundingBox() const { return m_bounding_box; }
private:
void changeToMesh(scene::IMesh *mesh);
@@ -84,6 +81,5 @@ private:
scene::IMesh *getItemMesh(Client *client, const ItemStack &item);
-scene::IMesh *getExtrudedMesh(ITextureSource *tsrc,
- const std::string &imagename);
+scene::IMesh *getExtrudedMesh(ITextureSource *tsrc, const std::string &imagename);
#endif