mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
PolyhedronVectorData core membervar cleanups
This commit is contained in:
parent
b415ac8f6b
commit
e126ca1823
11 changed files with 191 additions and 191 deletions
|
|
@ -586,10 +586,10 @@ void SceneContainer::polyhedronFindObjects(const Polyhedron& polyhedron, U32 mas
|
|||
Box3F box;
|
||||
box.minExtents.set(1e9, 1e9, 1e9);
|
||||
box.maxExtents.set(-1e9, -1e9, -1e9);
|
||||
for (i = 0; i < polyhedron.pointList.size(); i++)
|
||||
for (i = 0; i < polyhedron.mPointList.size(); i++)
|
||||
{
|
||||
box.minExtents.setMin(polyhedron.pointList[i]);
|
||||
box.maxExtents.setMax(polyhedron.pointList[i]);
|
||||
box.minExtents.setMin(polyhedron.mPointList[i]);
|
||||
box.maxExtents.setMax(polyhedron.mPointList[i]);
|
||||
}
|
||||
|
||||
if ( mask == WaterObjectType ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue