--------------------------------
-- @module Physics3DShape
-- @extend Ref
-- @parent_module cc
--------------------------------
--
-- @function [parent=#Physics3DShape] getbtShape
-- @param self
-- @return btCollisionShape#btCollisionShape ret (return value: btCollisionShape)
--------------------------------
-- get shape type
-- @function [parent=#Physics3DShape] getShapeType
-- @param self
-- @return int#int ret (return value: int)
--------------------------------
-- create box shape
-- param extent The extent of sphere.
-- @function [parent=#Physics3DShape] createBox
-- @param self
-- @param #vec3_table extent
-- @return Physics3DShape#Physics3DShape ret (return value: cc.Physics3DShape)
--------------------------------
-- create cylinder shape
-- param radius The radius of cylinder.
-- param height The height.
-- @function [parent=#Physics3DShape] createCylinder
-- @param self
-- @param #float radius
-- @param #float height
-- @return Physics3DShape#Physics3DShape ret (return value: cc.Physics3DShape)
--------------------------------
-- create convex hull
-- param points The vertices of convex hull
-- param numPoints The number of vertices.
-- @function [parent=#Physics3DShape] createConvexHull
-- @param self
-- @param #vec3_table points
-- @param #int numPoints
-- @return Physics3DShape#Physics3DShape ret (return value: cc.Physics3DShape)
--------------------------------
-- create capsule shape
-- param radius The radius of casule.
-- param height The height (cylinder part).
-- @function [parent=#Physics3DShape] createCapsule
-- @param self
-- @param #float radius
-- @param #float height
-- @return Physics3DShape#Physics3DShape ret (return value: cc.Physics3DShape)
--------------------------------
-- create sphere shape
-- param radius The radius of sphere.
-- @function [parent=#Physics3DShape] createSphere
-- @param self
-- @param #float radius
-- @return Physics3DShape#Physics3DShape ret (return value: cc.Physics3DShape)
return nil