MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / isValidBox

Method isValidBox

Engine/source/math/mBox.h:177–179  ·  view source on GitHub ↗

Check that the min extents of the box is less than or equal to the max extents.

Source from the content-addressed store, hash-verified

175 /// Check that the min extents of the box is
176 /// less than or equal to the max extents.
177 bool isValidBox() const { return (minExtents.x <= maxExtents.x) &&
178 (minExtents.y <= maxExtents.y) &&
179 (minExtents.z <= maxExtents.z); }
180
181 /// Return the closest point of the box, relative to the passed point.
182 Point3F getClosestPoint( const Point3F &refPt ) const;

Callers 15

resetWorldBoxMethod · 0.45
resetObjectBoxMethod · 0.45
setRenderTransformMethod · 0.45
resetRenderWorldBoxMethod · 0.45
ea_startMethod · 0.45
breakShapeMethod · 0.45
computeBoundsMethod · 0.45
installMethod · 0.45
computeBoundsMethod · 0.45
computeBoundsMethod · 0.45
_onTerrainChangedMethod · 0.45
preloadMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected