aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/include/IMetaTriangleSelector.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/include/IMetaTriangleSelector.h
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to 'libraries/irrlicht-1.8/include/IMetaTriangleSelector.h')
-rw-r--r--libraries/irrlicht-1.8/include/IMetaTriangleSelector.h86
1 files changed, 43 insertions, 43 deletions
diff --git a/libraries/irrlicht-1.8/include/IMetaTriangleSelector.h b/libraries/irrlicht-1.8/include/IMetaTriangleSelector.h
index 2cbb385..366893a 100644
--- a/libraries/irrlicht-1.8/include/IMetaTriangleSelector.h
+++ b/libraries/irrlicht-1.8/include/IMetaTriangleSelector.h
@@ -1,43 +1,43 @@
1// Copyright (C) 2002-2012 Nikolaus Gebhardt 1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine". 2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h 3// For conditions of distribution and use, see copyright notice in irrlicht.h
4 4
5#ifndef __I_META_TRIANGLE_SELECTOR_H_INCLUDED__ 5#ifndef __I_META_TRIANGLE_SELECTOR_H_INCLUDED__
6#define __I_META_TRIANGLE_SELECTOR_H_INCLUDED__ 6#define __I_META_TRIANGLE_SELECTOR_H_INCLUDED__
7 7
8#include "ITriangleSelector.h" 8#include "ITriangleSelector.h"
9 9
10namespace irr 10namespace irr
11{ 11{
12namespace scene 12namespace scene
13{ 13{
14 14
15//! Interface for making multiple triangle selectors work as one big selector. 15//! Interface for making multiple triangle selectors work as one big selector.
16/** This is nothing more than a collection of one or more triangle selectors 16/** This is nothing more than a collection of one or more triangle selectors
17providing together the interface of one triangle selector. In this way, 17providing together the interface of one triangle selector. In this way,
18collision tests can be done with different triangle soups in one pass. 18collision tests can be done with different triangle soups in one pass.
19*/ 19*/
20class IMetaTriangleSelector : public ITriangleSelector 20class IMetaTriangleSelector : public ITriangleSelector
21{ 21{
22public: 22public:
23 23
24 //! Adds a triangle selector to the collection of triangle selectors. 24 //! Adds a triangle selector to the collection of triangle selectors.
25 /** \param toAdd: Pointer to an triangle selector to add to the list. */ 25 /** \param toAdd: Pointer to an triangle selector to add to the list. */
26 virtual void addTriangleSelector(ITriangleSelector* toAdd) = 0; 26 virtual void addTriangleSelector(ITriangleSelector* toAdd) = 0;
27 27
28 //! Removes a specific triangle selector from the collection. 28 //! Removes a specific triangle selector from the collection.
29 /** \param toRemove: Pointer to an triangle selector which is in the 29 /** \param toRemove: Pointer to an triangle selector which is in the
30 list but will be removed. 30 list but will be removed.
31 \return True if successful, false if not. */ 31 \return True if successful, false if not. */
32 virtual bool removeTriangleSelector(ITriangleSelector* toRemove) = 0; 32 virtual bool removeTriangleSelector(ITriangleSelector* toRemove) = 0;
33 33
34 //! Removes all triangle selectors from the collection. 34 //! Removes all triangle selectors from the collection.
35 virtual void removeAllTriangleSelectors() = 0; 35 virtual void removeAllTriangleSelectors() = 0;
36}; 36};
37 37
38} // end namespace scene 38} // end namespace scene
39} // end namespace irr 39} // end namespace irr
40 40
41 41
42#endif 42#endif
43 43