// Copyright (C) 2009-present, Panagiotis Christopoulos Charitos and contributors. // All rights reserved. // Code licensed under the BSD License. // http://www.anki3d.org/LICENSE #include #include namespace anki { void PhysicsDrawer::drawWorld(const PhysicsWorld& world) { btDynamicsWorld& btWorld = const_cast(world.getBtWorld()); btWorld.setDebugDrawer(&m_debugDraw); btWorld.debugDrawWorld(); } } // end namespace anki