From 6ea3568e9ed9ce61d3d8753438f41ba69e1fe902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Thu, 7 Feb 2019 10:06:56 -0800 Subject: [PATCH] Cleanup. --- examples/29-debugdraw/debugdraw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/29-debugdraw/debugdraw.cpp b/examples/29-debugdraw/debugdraw.cpp index cbcb63a7a..3bc759e4c 100644 --- a/examples/29-debugdraw/debugdraw.cpp +++ b/examples/29-debugdraw/debugdraw.cpp @@ -739,7 +739,7 @@ void draw(DebugDrawEncoder& _dde, const Shape& _shape, const bx::Vec3 _pos) case Shape::Type::Cylinder: _dde.draw (*reinterpret_cast(_shape.data) ); break; case Shape::Type::Disk: _dde.draw (*reinterpret_cast(_shape.data) ); break; case Shape::Type::Obb: _dde.draw (*reinterpret_cast(_shape.data) ); break; - case Shape::Type::Plane: { _dde.drawGrid( reinterpret_cast(_shape.data)->normal, _pos, 10, 0.3f); } break; + case Shape::Type::Plane: { _dde.drawGrid( reinterpret_cast(_shape.data)->normal, _pos, 9, 0.3f); } break; case Shape::Type::Sphere: _dde.draw (*reinterpret_cast(_shape.data) ); break; case Shape::Type::Triangle: _dde.draw (*reinterpret_cast(_shape.data) ); break; }