mirror of https://github.com/axmolengine/axmol.git
49 lines
1.4 KiB
Lua
49 lines
1.4 KiB
Lua
|
|
--------------------------------
|
|
-- @module PhysicsShapeBox
|
|
-- @extend PhysicsShape
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeBox] getPointsCount
|
|
-- @param self
|
|
-- @return int#int ret (return value: int)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeBox] getSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeBox] create
|
|
-- @param self
|
|
-- @param #size_table size
|
|
-- @param #cc.PhysicsMaterial physicsmaterial
|
|
-- @param #array_table array
|
|
-- @return PhysicsShapeBox#PhysicsShapeBox ret (return value: cc.PhysicsShapeBox)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeBox] calculateArea
|
|
-- @param self
|
|
-- @param #size_table size
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeBox] calculateMoment
|
|
-- @param self
|
|
-- @param #float float
|
|
-- @param #size_table size
|
|
-- @param #array_table array
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeBox] getOffset
|
|
-- @param self
|
|
-- @return array_table#array_table ret (return value: array_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsShapeBox] calculateDefaultMoment
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
return nil
|