Home
last modified time | relevance | path

Searched refs:maxMotorTorque (Results 1 – 25 of 138) sorted by relevance

123456

/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Urho2D/
H A DConstraintRevolute2D.cpp148 void ConstraintRevolute2D::SetMaxMotorTorque(float maxMotorTorque) in SetMaxMotorTorque() argument
150 if (maxMotorTorque == jointDef_.maxMotorTorque) in SetMaxMotorTorque()
153 jointDef_.maxMotorTorque = maxMotorTorque; in SetMaxMotorTorque()
156 static_cast<b2RevoluteJoint*>(joint_)->SetMaxMotorTorque(maxMotorTorque); in SetMaxMotorTorque()
H A DConstraintWheel2D.cpp101 void ConstraintWheel2D::SetMaxMotorTorque(float maxMotorTorque) in SetMaxMotorTorque() argument
103 if (maxMotorTorque == jointDef_.maxMotorTorque) in SetMaxMotorTorque()
106 jointDef_.maxMotorTorque = maxMotorTorque; in SetMaxMotorTorque()
109 static_cast<b2WheelJoint*>(joint_)->SetMaxMotorTorque(maxMotorTorque); in SetMaxMotorTorque()
H A DConstraintRevolute2D.h56 void SetMaxMotorTorque(float maxMotorTorque);
77 float GetMaxMotorTorque() const { return jointDef_.maxMotorTorque; } in GetMaxMotorTorque()
H A DConstraintWheel2D.h50 void SetMaxMotorTorque(float maxMotorTorque);
68 float GetMaxMotorTorque() const { return jointDef_.maxMotorTorque; } in GetMaxMotorTorque()
/dports/graphics/reactphysics3d/reactphysics3d-0.8.0/include/reactphysics3d/constraint/
H A DHingeJoint.h71 decimal maxMotorTorque; member
89 motorSpeed(0), maxMotorTorque(0) {} in HingeJointInfo()
109 maxMotorTorque(0) {} in HingeJointInfo()
132 maxMotorTorque(initMaxMotorTorque) {} in HingeJointInfo()
208 void setMaxMotorTorque(decimal maxMotorTorque);
/dports/x11-toolkits/qml-box2d/qml-box2d-21e57f/
H A Dbox2drevolutejoint.h45 …Q_PROPERTY(float maxMotorTorque READ maxMotorTorque WRITE setMaxMotorTorque NOTIFY maxMotorTorqueC…
74 float maxMotorTorque() const;
75 void setMaxMotorTorque(float maxMotorTorque);
136 inline float Box2DRevoluteJoint::maxMotorTorque() const in maxMotorTorque() function
H A Dbox2dwheeljoint.h42 …Q_PROPERTY(float maxMotorTorque READ maxMotorTorque WRITE setMaxMotorTorque NOTIFY maxMotorTorqueC…
61 float maxMotorTorque() const;
62 void setMaxMotorTorque(float maxMotorTorque);
128 inline float Box2DWheelJoint::maxMotorTorque() const in maxMotorTorque() function
H A Dbox2dwheeljoint.cpp89 void Box2DWheelJoint::setMaxMotorTorque(float maxMotorTorque) in setMaxMotorTorque() argument
91 if (m_maxMotorTorque == maxMotorTorque) in setMaxMotorTorque()
94 m_maxMotorTorque = maxMotorTorque; in setMaxMotorTorque()
96 wheelJoint()->SetMaxMotorTorque(maxMotorTorque); in setMaxMotorTorque()
158 jointDef.maxMotorTorque = m_maxMotorTorque; in createJoint()
H A Dbox2drevolutejoint.cpp137 void Box2DRevoluteJoint::setMaxMotorTorque(float maxMotorTorque) in setMaxMotorTorque() argument
139 if (m_maxMotorTorque == maxMotorTorque) in setMaxMotorTorque()
142 m_maxMotorTorque = maxMotorTorque; in setMaxMotorTorque()
144 revoluteJoint()->SetMaxMotorTorque(maxMotorTorque); in setMaxMotorTorque()
180 jointDef.maxMotorTorque = m_maxMotorTorque; in createJoint()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/LuaScript/pkgs/Urho2D/
H A DConstraintRevolute2D.pkg11 void SetMaxMotorTorque(float maxMotorTorque);
27 tolua_property__get_set float maxMotorTorque;
H A DConstraintWheel2D.pkg8 void SetMaxMotorTorque(float maxMotorTorque);
24 tolua_property__get_set float maxMotorTorque;
/dports/devel/love07/love-HEAD/src/modules/physics/box2d/Source/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member
/dports/devel/love5/love-0.5-0/src/box2d/Source/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member
/dports/games/numptyphysics/numptyphysics/Box2D/Source/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member
/dports/devel/upp/upp/uppsrc/plugin/box2d/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member
/dports/games/kolf/kolf-21.12.3/external/Box2D/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 qreal maxMotorTorque; member
/dports/graphics/reactphysics3d/reactphysics3d-0.8.0/src/constraint/
H A DHingeJoint.cpp159 void HingeJoint::setMaxMotorTorque(decimal maxMotorTorque) { in setMaxMotorTorque() argument
163 if (maxMotorTorque != torque) { in setMaxMotorTorque()
166 mWorld.mHingeJointsComponents.setMaxMotorTorque(mEntity, maxMotorTorque); in setMaxMotorTorque()
/dports/misc/box2d/box2d-2.4.1/include/box2d/
H A Db2_revolute_joint.h49 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
85 float maxMotorTorque; member
H A Db2_wheel_joint.h47 maxMotorTorque = 0.0f; in b2WheelJointDef()
79 float maxMotorTorque; member
/dports/devel/juce/JUCE-f37e9a1/modules/juce_box2d/box2d/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member
/dports/devel/love/love-11.3/src/libraries/Box2D/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member
/dports/devel/love08/love-0.8.0/src/libraries/Box2D/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member
/dports/devel/love10/love-0.10.2/src/libraries/Box2D/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member
/dports/games/emptyepsilon/SeriousProton-EE-2021.06.23/src/Box2D/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/Box2D/Box2D/Dynamics/Joints/
H A Db2RevoluteJoint.h45 maxMotorTorque = 0.0f; in b2RevoluteJointDef()
81 float32 maxMotorTorque; member

123456