17 #include <third_party/box2d/box2d.h> 26 explicit Box2dRenderer(QPainter* painter) : painter_(painter) {}
29 void DrawPolygon(
const b2Vec2* vertices,
31 const b2Color& color)
override;
34 void DrawSolidPolygon(
const b2Vec2* vertices,
36 const b2Color& color)
override;
38 void DrawCircle(
const b2Vec2& center, float32 radius,
const b2Color& color)
override;
40 void DrawSolidCircle(
const b2Vec2& center,
43 const b2Color& color)
override;
45 void DrawSegment(
const b2Vec2& p1,
const b2Vec2& p2,
const b2Color& color)
override;
47 void DrawTransform(
const b2Transform& xf)
override;
49 void DrawPoint(
const b2Vec2& p, float32 size,
const b2Color& color)
override;
52 QPainter* painter_ =
nullptr;
A QPainter-based implementation of Box2d debug draw interface (b2Draw)
Definition: box2d_renderer.h:24
Definition: accelerometer_widget.cpp:23