addCapsule(length, radius, offsetX, offsetY, rotation) → {p2.Capsule}
Adds a Capsule shape to this Body.
You can control the offset from the center of the body and the rotation.
Parameters
| Name | Type | Argument | Default | Description | 
|---|---|---|---|---|
length |  number | The distance between the end points in pixels.  |  ||
radius |  number | Radius of the capsule in pixels.  |  ||
offsetX |  number |  <optional> |  0 | Local horizontal offset of the shape relative to the body center of mass.  |  
offsetY |  number |  <optional> |  0 | Local vertical offset of the shape relative to the body center of mass.  |  
rotation |  number |  <optional> |  0 | Local rotation of the shape relative to the body center of mass, specified in radians.  |  
Returns
 p2.Capsule - 
 The Capsule shape that was added to the Body.
- Source code: physics/p2/Body.js (Line 1108)
 
Please login to continue.