2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module PhysicsJointDistance
|
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
|
|
|
|
2015-01-08 10:40:40 +08:00
|
|
|
--------------------------------
|
|
|
|
--
|
|
|
|
-- @function [parent=#PhysicsJointDistance] 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 distance of the anchor points.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointDistance] setDistance
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float distance
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return PhysicsJointDistance#PhysicsJointDistance self (return value: cc.PhysicsJointDistance)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 20:30:15 +08:00
|
|
|
-- Get the distance of the anchor points.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointDistance] getDistance
|
|
|
|
-- @param self
|
|
|
|
-- @return float#float ret (return value: float)
|
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 20:30:15 +08:00
|
|
|
-- Create a fixed distance joint.<br>
|
|
|
|
-- param a A is the body to connect.<br>
|
|
|
|
-- param b B is the body to connect.<br>
|
|
|
|
-- param anchr1 Anchr1 is the anchor point on body a.<br>
|
|
|
|
-- param anchr2 Anchr2 is the anchor point on body b.<br>
|
|
|
|
-- return A object pointer.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#PhysicsJointDistance] construct
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.PhysicsBody a
|
|
|
|
-- @param #cc.PhysicsBody b
|
|
|
|
-- @param #vec2_table anchr1
|
|
|
|
-- @param #vec2_table anchr2
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @return PhysicsJointDistance#PhysicsJointDistance ret (return value: cc.PhysicsJointDistance)
|
|
|
|
|
|
|
|
return nil
|