Changeset 11099 for code/trunk/src/libraries/tools
- Timestamp:
- Jan 27, 2016, 6:50:51 PM (9 years ago)
- Location:
- code/trunk/src/libraries/tools
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/tools/BulletDebugDrawer.cc
r10277 r11099 1 1 /** 2 * @file BulletDebugDrawer.cc 2 3 * Originally from http://www.ogre3d.org/tikiwiki/BulletDebugDrawer&structure=Cookbook 3 4 * This source code is released into the Public Domain. -
code/trunk/src/libraries/tools/BulletDebugDrawer.h
r11071 r11099 1 /**2 * Originally from http://www.ogre3d.org/tikiwiki/BulletDebugDrawer&structure=Cookbook3 * This source code is released into the Public Domain.4 *5 * Modified by Fabian 'x3n' Landau by using DebugDrawer and Orxonox specific utilities (e.g. output).6 */7 8 1 #ifndef _BulletDebugDrawer_H__ 9 2 #define _BulletDebugDrawer_H__ … … 18 11 namespace orxonox 19 12 { 13 /** 14 * Originally from http://www.ogre3d.org/tikiwiki/BulletDebugDrawer&structure=Cookbook 15 * This source code is released into the Public Domain. 16 * 17 * Modified by Fabian 'x3n' Landau by using DebugDrawer and Orxonox specific utilities (e.g. output). 18 */ 20 19 class _ToolsExport BulletDebugDrawer : public btIDebugDraw, public Ogre::FrameListener 21 20 { -
code/trunk/src/libraries/tools/DebugDrawer.cc
r11071 r11099 1 1 /** 2 * @file DebugDrawer.cc 2 3 * Copy-pasted from 3 4 * - https://bitbucket.org/hasyimi/ogre-debug-drawing-utility/src -
code/trunk/src/libraries/tools/DebugDrawer.h
r10262 r11099 1 1 /** 2 * @file DebugDrawer.h 2 3 * Copy-pasted from 3 4 * - https://bitbucket.org/hasyimi/ogre-debug-drawing-utility/src … … 9 10 */ 10 11 11 /** 12 * @file 13 * @brief DebugDrawer is a utility to draw debug shapes (lines, triangles, spheres) with Ogre. 14 * This utility is e.g. used by @ref BulletDebugDrawer to visualize collision shapes and other physical entities. 15 */ 12 16 13 17 14 #ifndef _DebugDrawer_H__ … … 26 23 namespace orxonox 27 24 { 25 /** 26 * @brief DebugDrawer is a utility to draw debug shapes (lines, triangles, spheres) with Ogre. 27 * This utility is e.g. used by @ref orxonox::BulletDebugDrawer to visualize collision shapes and other physical entities. 28 */ 28 29 class _ToolsExport DebugDrawer 29 30 { -
code/trunk/src/libraries/tools/IcoSphere.cc
r11071 r11099 1 1 /** 2 * @file IcoSphere.cc 2 3 * Copy-pasted from 3 4 * - https://bitbucket.org/hasyimi/ogre-debug-drawing-utility/src -
code/trunk/src/libraries/tools/IcoSphere.h
r10262 r11099 1 /**2 * Copy-pasted from3 * - https://bitbucket.org/hasyimi/ogre-debug-drawing-utility/src4 * - http://www.ogre3d.org/tikiwiki/tiki-index.php?page=Debug+Drawing+Utility+Class5 *6 * This source code is released into the Public Domain.7 *8 * Modified by Fabian 'x3n' Landau9 */10 1 11 /**12 * @file13 * @brief DebugDrawer is a utility to draw debug shapes (lines, triangles, spheres) with Ogre.14 * This utility is e.g. used by @ref BulletDebugDrawer to visualize collision shapes and other physical entities.15 */16 2 17 3 #ifndef _IcoSphere_H__ … … 27 13 typedef std::pair<Ogre::Vector3, Ogre::ColourValue> VertexPair; 28 14 15 /** 16 * Copy-pasted from 17 * - https://bitbucket.org/hasyimi/ogre-debug-drawing-utility/src 18 * - http://www.ogre3d.org/tikiwiki/tiki-index.php?page=Debug+Drawing+Utility+Class 19 * 20 * This source code is released into the Public Domain. 21 * 22 * Modified by Fabian 'x3n' Landau 23 */ 29 24 class _ToolsExport IcoSphere 30 25 { -
code/trunk/src/libraries/tools/OgreBulletUtils.h
r11071 r11099 1 1 /** 2 * @file OgreBulletUtils.h 2 3 * Copy-pasted from http://www.ogre3d.org/tikiwiki/BulletDebugDrawer&structure=Cookbook 3 4 * This source code is released into the Public Domain.
Note: See TracChangeset
for help on using the changeset viewer.