Home
last modified time | relevance | path

Searched refs:Box2DFixture (Results 1 – 11 of 11) sorted by relevance

/dports/x11-toolkits/qml-box2d/qml-box2d-21e57f/
H A Dbox2dfixture.cpp37 Box2DFixture::Box2DFixture(QObject *parent) : in Box2DFixture() function in Box2DFixture
45 float Box2DFixture::density() const in density()
61 float Box2DFixture::friction() const in friction()
77 float Box2DFixture::restitution() const in restitution()
93 bool Box2DFixture::isSensor() const in isSensor()
98 void Box2DFixture::setSensor(bool sensor) in setSensor()
109 Box2DFixture::CategoryFlags Box2DFixture::categories() const in categories()
126 Box2DFixture::CategoryFlags Box2DFixture::collidesWith() const in collidesWith()
143 int Box2DFixture::groupIndex() const in groupIndex()
172 void Box2DFixture::recreateFixture() in recreateFixture()
[all …]
H A Dbox2dfixture.h38 class Box2DFixture : public QObject
100 void endContact(Box2DFixture *other);
112 class Box2DBox : public Box2DFixture in Q_DECLARE_OPERATORS_FOR_FLAGS()
124 : Box2DFixture(parent) in Q_DECLARE_OPERATORS_FOR_FLAGS()
164 class Box2DCircle : public Box2DFixture
174 : Box2DFixture(parent) in Q_PROPERTY()
204 class Box2DPolygon : public Box2DFixture
212 Box2DFixture(parent) in Q_PROPERTY()
229 class Box2DChain : public Box2DFixture
272 class Box2DEdge : public Box2DFixture
[all …]
H A Dbox2dbody.h37 class Box2DFixture; variable
60 Q_PROPERTY(QQmlListProperty<Box2DFixture> fixtures READ fixtures)
115 QQmlListProperty<Box2DFixture> fixtures();
136 Q_INVOKABLE void addFixture(Box2DFixture *fixture);
175 QList<Box2DFixture*> mFixtures;
177 static void append_fixture(QQmlListProperty<Box2DFixture> *list,
178 Box2DFixture *fixture);
179 static int count_fixture(QQmlListProperty<Box2DFixture> *list);
180 static Box2DFixture *at_fixture(QQmlListProperty<Box2DFixture> *list, int index);
H A Dbox2dcontact.h32 class Box2DFixture; variable
38 Q_PROPERTY(Box2DFixture *fixtureA READ fixtureA)
39 Q_PROPERTY(Box2DFixture *fixtureB READ fixtureB)
60 Box2DFixture *fixtureA() const;
61 Box2DFixture *fixtureB() const;
H A Dbox2dbody.cpp220 QQmlListProperty<Box2DFixture> Box2DBody::fixtures() in fixtures()
222 return QQmlListProperty<Box2DFixture>(this, 0, in fixtures()
229 void Box2DBody::append_fixture(QQmlListProperty<Box2DFixture> *list, in append_fixture()
230 Box2DFixture *fixture) in append_fixture()
236 int Box2DBody::count_fixture(QQmlListProperty<Box2DFixture> *list) in count_fixture()
242 Box2DFixture *Box2DBody::at_fixture(QQmlListProperty<Box2DFixture> *list, int index) in at_fixture()
260 void Box2DBody::addFixture(Box2DFixture *fixture) in addFixture()
294 foreach (Box2DFixture *fixture, mFixtures) in createBody()
501 foreach (Box2DFixture *fixture, mFixtures) in onWorldPixelsPerMeterChanged()
H A Dbox2draycast.h34 class Box2DFixture; variable
54 void fixtureReported(Box2DFixture *fixture,
H A Dbox2dcontact.cpp57 Box2DFixture *Box2DContact::fixtureA() const in fixtureA()
65 Box2DFixture *Box2DContact::fixtureB() const in fixtureB()
H A Dbox2dworld.cpp63 Box2DFixture *fixtureA;
64 Box2DFixture *fixtureB;
283 Box2DFixture *f = toBox2DFixture(fixture); in SayGoodbye()
H A Dbox2draycast.cpp45 Box2DFixture *box2dFixture = toBox2DFixture(fixture); in ReportFixture()
H A Dbox2dplugin.cpp67 qmlRegisterUncreatableType<Box2DFixture>(uri, versionMajor, versionMinor, "Fixture", in registerTypes()
H A Dbox2dworld.h37 class Box2DFixture; variable