Adding more bounds overlap tests.

This commit is contained in:
Бранимир Караџић
2019-02-05 18:31:42 -08:00
parent 01a5acaca6
commit 649033599b
5 changed files with 292 additions and 35 deletions

View File

@@ -2578,3 +2578,14 @@ void DebugDrawEncoder::drawOrb(float _x, float _y, float _z, float _radius, Axis
{
DEBUG_DRAW_ENCODER(drawOrb(_x, _y, _z, _radius, _highlight) );
}
DebugDrawEncoderScopePush::DebugDrawEncoderScopePush(DebugDrawEncoder& _dde)
: m_dde(_dde)
{
m_dde.push();
}
DebugDrawEncoderScopePush::~DebugDrawEncoderScopePush()
{
m_dde.pop();
}