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
master
cutealien 2013-01-21 23:01:03 +00:00
parent 3a40f567cf
commit 4250b6f7d3
1 changed files with 12 additions and 12 deletions

View File

@ -189,7 +189,7 @@ namespace scene
/** Note: The result is _not_ identical to getTransformedBoundingBox().getEdges(),
but getting an aabbox3d of these edges would then be identical.
\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);
getBoundingBox().getEdges( edges.pointer() );