Commit 4250b6f7 authored by cutealien's avatar cutealien

Had added a const too much in last check-in.


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4447 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 3a40f567
...@@ -189,7 +189,7 @@ namespace scene ...@@ -189,7 +189,7 @@ namespace scene
/** Note: The result is _not_ identical to getTransformedBoundingBox().getEdges(), /** Note: The result is _not_ identical to getTransformedBoundingBox().getEdges(),
but getting an aabbox3d of these edges would then be identical. but getting an aabbox3d of these edges would then be identical.
\param edges Receives an array with the transformed edges */ \param edges Receives an array with the transformed edges */
virtual const void getTransformedBoundingBoxEdges(core::array< core::vector3d<f32> >& edges) const virtual void getTransformedBoundingBoxEdges(core::array< core::vector3d<f32> >& edges) const
{ {
edges.set_used(8); edges.set_used(8);
getBoundingBox().getEdges( edges.pointer() ); getBoundingBox().getEdges( edges.pointer() );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment