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

Method isContained

Engine/source/math/mBox.h:284–289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

282}
283
284inline bool Box3F::isContained(const Point3F& in_rContained) const
285{
286 return (in_rContained.x >= minExtents.x && in_rContained.x < maxExtents.x) &&
287 (in_rContained.y >= minExtents.y && in_rContained.y < maxExtents.y) &&
288 (in_rContained.z >= minExtents.z && in_rContained.z < maxExtents.z);
289}
290
291inline bool Box3F::isContained( const Point2F &pt ) const
292{

Callers 15

collideBoxMethod · 0.45
containsPointMethod · 0.45
_testBoundsMethod · 0.45
containsPointMethod · 0.45
getOverlappingZonesMethod · 0.45
collideBoxMethod · 0.45
processTickMethod · 0.45
prepRenderImageMethod · 0.45
isUnderwaterMethod · 0.45
castRayMethod · 0.45
getSurfaceHeightMethod · 0.45
preloadMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected