Skip to content

Commit

Permalink
changed certain Matter.Composite methods to private in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Jul 11, 2014
1 parent 3e48825 commit 8aa148d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/body/Composite.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ var Composite = {};

/**
* Adds a composite to the given composite
* @private
* @method addComposite
* @param {composite} compositeA
* @param {composite} compositeB
Expand All @@ -147,6 +148,7 @@ var Composite = {};

/**
* Removes a composite from the given composite, and optionally searching its children recursively
* @private
* @method removeComposite
* @param {composite} compositeA
* @param {composite} compositeB
Expand All @@ -171,6 +173,7 @@ var Composite = {};

/**
* Removes a composite from the given composite
* @private
* @method removeCompositeAt
* @param {composite} composite
* @param {number} position
Expand All @@ -184,6 +187,7 @@ var Composite = {};

/**
* Adds a body to the given composite
* @private
* @method addBody
* @param {composite} composite
* @param {body} body
Expand All @@ -197,6 +201,7 @@ var Composite = {};

/**
* Removes a body from the given composite, and optionally searching its children recursively
* @private
* @method removeBody
* @param {composite} composite
* @param {body} body
Expand All @@ -221,6 +226,7 @@ var Composite = {};

/**
* Removes a body from the given composite
* @private
* @method removeBodyAt
* @param {composite} composite
* @param {number} position
Expand All @@ -234,6 +240,7 @@ var Composite = {};

/**
* Adds a constraint to the given composite
* @private
* @method addConstraint
* @param {composite} composite
* @param {constraint} constraint
Expand All @@ -247,6 +254,7 @@ var Composite = {};

/**
* Removes a constraint from the given composite, and optionally searching its children recursively
* @private
* @method removeConstraint
* @param {composite} composite
* @param {constraint} constraint
Expand All @@ -270,6 +278,7 @@ var Composite = {};

/**
* Removes a body from the given composite
* @private
* @method removeConstraintAt
* @param {composite} composite
* @param {number} position
Expand Down

0 comments on commit 8aa148d

Please sign in to comment.