2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module PhysicsJointRotarySpring
|
2014-03-20 10:21:28 +08:00
|
|
|
-- @extend PhysicsJoint
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2015-03-19 20:30:15 +08:00
|
|
|
-- Get the spring soft constant.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointRotarySpring] getDamping
|
|
|
|
-- @param self
|
|
|
|
-- @return float#float ret (return value: float)
|
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 20:30:15 +08:00
|
|
|
-- Set the relative angle in radians from the body a to b.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointRotarySpring] setRestAngle
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float restAngle
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return PhysicsJointRotarySpring#PhysicsJointRotarySpring self (return value: cc.PhysicsJointRotarySpring)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 20:30:15 +08:00
|
|
|
-- Get the spring constant.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointRotarySpring] getStiffness
|
|
|
|
-- @param self
|
|
|
|
-- @return float#float ret (return value: float)
|
|
|
|
|
2015-01-08 10:40:40 +08:00
|
|
|
--------------------------------
|
|
|
|
--
|
|
|
|
-- @function [parent=#PhysicsJointRotarySpring] createConstraints
|
|
|
|
-- @param self
|
|
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2015-03-19 20:30:15 +08:00
|
|
|
-- Set the spring constant.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointRotarySpring] setStiffness
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float stiffness
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return PhysicsJointRotarySpring#PhysicsJointRotarySpring self (return value: cc.PhysicsJointRotarySpring)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 20:30:15 +08:00
|
|
|
-- Set the spring soft constant.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointRotarySpring] setDamping
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float damping
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return PhysicsJointRotarySpring#PhysicsJointRotarySpring self (return value: cc.PhysicsJointRotarySpring)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 20:30:15 +08:00
|
|
|
-- Get the relative angle in radians from the body a to b.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointRotarySpring] getRestAngle
|
|
|
|
-- @param self
|
|
|
|
-- @return float#float ret (return value: float)
|
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 20:30:15 +08:00
|
|
|
-- Create a damped rotary spring joint.<br>
|
|
|
|
-- param a A is the body to connect.<br>
|
|
|
|
-- param b B is the body to connect.<br>
|
|
|
|
-- param stiffness It's the spring constant.<br>
|
|
|
|
-- param damping It's how soft to make the damping of the spring.<br>
|
|
|
|
-- return A object pointer.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointRotarySpring] construct
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.PhysicsBody a
|
|
|
|
-- @param #cc.PhysicsBody b
|
|
|
|
-- @param #float stiffness
|
|
|
|
-- @param #float damping
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @return PhysicsJointRotarySpring#PhysicsJointRotarySpring ret (return value: cc.PhysicsJointRotarySpring)
|
|
|
|
|
|
|
|
return nil
|