~ubuntu-branches/ubuntu/wily/box2d/wily

« back to all changes in this revision

Viewing changes to Box2D/Testbed/Tests/OneSidedPlatform.h

  • Committer: Package Import Robot
  • Author(s): Markus Koschany
  • Date: 2014-05-30 18:42:02 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140530184202-hosw11agojg02ac3
Tags: 2.3.1+ds-1
* Imported Upstream version 2.3.1+ds.
* Fix debian/watch to determine new releases by parsing
  the SVN tags of upstream's version control system.
* Update get-orig-source target for new release.
* dh_strip override: Replace $VER variable with 2.3.0 string.
* debian/copyright: Add new Public Domain and Apache 2.0 license.
* libbox2d-dev.install:
  - Install *.cmake files in /usr/lib/$(DEB_HOST_MULTIARCH)/cmake/Box2D.

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
        void Step(Settings* settings)
111
111
        {
112
112
                Test::Step(settings);
113
 
                m_debugDraw.DrawString(5, m_textLine, "Press: (c) create a shape, (d) destroy a shape.");
 
113
                g_debugDraw.DrawString(5, m_textLine, "Press: (c) create a shape, (d) destroy a shape.");
114
114
                m_textLine += DRAW_STRING_NEW_LINE;
115
115
 
116
116
        b2Vec2 v = m_character->GetBody()->GetLinearVelocity();
117
 
        m_debugDraw.DrawString(5, m_textLine, "Character Linear Velocity: %f", v.y);
 
117
        g_debugDraw.DrawString(5, m_textLine, "Character Linear Velocity: %f", v.y);
118
118
                m_textLine += DRAW_STRING_NEW_LINE;
119
119
        }
120
120