mirror of https://github.com/axmolengine/axmol.git
43 lines
1.3 KiB
Lua
43 lines
1.3 KiB
Lua
|
|
--------------------------------
|
|
-- @module PhysicsShapeCircle
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeCircle] getRadius
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeCircle] create
|
|
-- @param self
|
|
-- @param #float float
|
|
-- @param #cc.PhysicsMaterial physicsmaterial
|
|
-- @param #point_table point
|
|
-- @return PhysicsShapeCircle#PhysicsShapeCircle ret (return value: cc.PhysicsShapeCircle)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeCircle] calculateArea
|
|
-- @param self
|
|
-- @param #float float
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeCircle] calculateMoment
|
|
-- @param self
|
|
-- @param #float float
|
|
-- @param #float float
|
|
-- @param #point_table point
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeCircle] getOffset
|
|
-- @param self
|
|
-- @return point_table#point_table ret (return value: point_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeCircle] calculateDefaultMoment
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
return nil
|