Skip to content

Commit

Permalink
build v1.0.0-beta.15
Browse files Browse the repository at this point in the history
  • Loading branch information
shakiba committed Aug 26, 2023
1 parent 7f82dc4 commit 6b3113e
Show file tree
Hide file tree
Showing 121 changed files with 2,026 additions and 3,916 deletions.
186 changes: 98 additions & 88 deletions dist/planck-with-testbed.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/planck-with-testbed.d.ts.map

Large diffs are not rendered by default.

473 changes: 220 additions & 253 deletions dist/planck-with-testbed.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/planck-with-testbed.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/planck-with-testbed.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/planck-with-testbed.min.js.map

Large diffs are not rendered by default.

473 changes: 220 additions & 253 deletions dist/planck-with-testbed.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/planck-with-testbed.mjs.map

Large diffs are not rendered by default.

186 changes: 98 additions & 88 deletions dist/planck.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/planck.d.ts.map

Large diffs are not rendered by default.

473 changes: 220 additions & 253 deletions dist/planck.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/planck.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/planck.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/planck.min.js.map

Large diffs are not rendered by default.

473 changes: 220 additions & 253 deletions dist/planck.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/planck.mjs.map

Large diffs are not rendered by default.

42 changes: 0 additions & 42 deletions docs/api/classes/aabb.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@

\+ **new AABB**(`lower?`: [Vec2Value](../interfaces/vec2value.md), `upper?`: [Vec2Value](../interfaces/vec2value.md)): *[AABB](aabb.md)*

*Defined in [src/collision/AABB.ts:61](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L61)*

**Parameters:**

Name | Type |
Expand All @@ -61,24 +59,18 @@ Name | Type |

**lowerBound**: *Vec2*

*Defined in [src/collision/AABB.ts:60](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L60)*

___

### upperBound

**upperBound**: *Vec2*

*Defined in [src/collision/AABB.ts:61](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L61)*

## Methods

### combine

**combine**(`a`: [AABBValue](../interfaces/aabbvalue.md), `b?`: [AABBValue](../interfaces/aabbvalue.md)): *void*

*Defined in [src/collision/AABB.ts:123](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L123)*

Combine one or two AABB into this one.

**Parameters:**
Expand All @@ -96,8 +88,6 @@ ___

**combinePoints**(`a`: [Vec2Value](../interfaces/vec2value.md), `b`: [Vec2Value](../interfaces/vec2value.md)): *void*

*Defined in [src/collision/AABB.ts:140](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L140)*

**Parameters:**

Name | Type |
Expand All @@ -113,8 +103,6 @@ ___

**contains**(`aabb`: [AABBValue](../interfaces/aabbvalue.md)): *boolean*

*Defined in [src/collision/AABB.ts:150](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L150)*

**Parameters:**

Name | Type |
Expand All @@ -129,8 +117,6 @@ ___

**extend**(`value`: number): *[AABB](aabb.md)*

*Defined in [src/collision/AABB.ts:159](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L159)*

**Parameters:**

Name | Type |
Expand All @@ -145,8 +131,6 @@ ___

**getCenter**(): *Vec2*

*Defined in [src/collision/AABB.ts:102](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L102)*

Get the center of the AABB.

**Returns:** *Vec2*
Expand All @@ -157,8 +141,6 @@ ___

**getExtents**(): *Vec2*

*Defined in [src/collision/AABB.ts:109](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L109)*

Get the extents of the AABB (half-widths).

**Returns:** *Vec2*
Expand All @@ -169,8 +151,6 @@ ___

**getPerimeter**(): *number*

*Defined in [src/collision/AABB.ts:116](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L116)*

Get the perimeter length.

**Returns:** *number*
Expand All @@ -181,8 +161,6 @@ ___

**isValid**(): *boolean*

*Defined in [src/collision/AABB.ts:84](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L84)*

Verify that the bounds are sorted.

**Returns:** *boolean*
Expand All @@ -193,8 +171,6 @@ ___

**rayCast**(`output`: [RayCastOutput](../interfaces/raycastoutput.md), `input`: [RayCastInput](../interfaces/raycastinput.md)): *boolean*

*Defined in [src/collision/AABB.ts:202](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L202)*

**Parameters:**

Name | Type |
Expand All @@ -210,8 +186,6 @@ ___

**set**(`aabb`: [AABBValue](../interfaces/aabbvalue.md)): *void*

*Defined in [src/collision/AABB.ts:145](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L145)*

**Parameters:**

Name | Type |
Expand All @@ -226,8 +200,6 @@ ___

**areEqual**(`a`: [AABBValue](../interfaces/aabbvalue.md), `b`: [AABBValue](../interfaces/aabbvalue.md)): *boolean*

*Defined in [src/collision/AABB.ts:185](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L185)*

**Parameters:**

Name | Type |
Expand All @@ -243,8 +215,6 @@ ___

**assert**(`o`: any): *void*

*Defined in [src/collision/AABB.ts:95](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L95)*

**Parameters:**

Name | Type |
Expand All @@ -259,8 +229,6 @@ ___

**combinePoints**(`out`: [AABBValue](../interfaces/aabbvalue.md), `a`: [Vec2Value](../interfaces/vec2value.md), `b`: [Vec2Value](../interfaces/vec2value.md)): *[AABBValue](../interfaces/aabbvalue.md)*

*Defined in [src/collision/AABB.ts:267](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L267)*

**Parameters:**

Name | Type |
Expand All @@ -277,8 +245,6 @@ ___

**combinedPerimeter**(`a`: [AABBValue](../interfaces/aabbvalue.md), `b`: [AABBValue](../interfaces/aabbvalue.md)): *number*

*Defined in [src/collision/AABB.ts:275](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L275)*

**Parameters:**

Name | Type |
Expand All @@ -294,8 +260,6 @@ ___

**diff**(`a`: [AABBValue](../interfaces/aabbvalue.md), `b`: [AABBValue](../interfaces/aabbvalue.md)): *number*

*Defined in [src/collision/AABB.ts:189](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L189)*

**Parameters:**

Name | Type |
Expand All @@ -311,8 +275,6 @@ ___

**extend**(`out`: [AABBValue](../interfaces/aabbvalue.md), `value`: number): *[AABBValue](../interfaces/aabbvalue.md)*

*Defined in [src/collision/AABB.ts:164](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L164)*

**Parameters:**

Name | Type |
Expand All @@ -328,8 +290,6 @@ ___

**isValid**(`obj`: any): *boolean*

*Defined in [src/collision/AABB.ts:88](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L88)*

**Parameters:**

Name | Type |
Expand All @@ -344,8 +304,6 @@ ___

**testOverlap**(`a`: [AABBValue](../interfaces/aabbvalue.md), `b`: [AABBValue](../interfaces/aabbvalue.md)): *boolean*

*Defined in [src/collision/AABB.ts:172](https://github.com/shakiba/planck.js/blob/6ab76c7/src/collision/AABB.ts#L172)*

**Parameters:**

Name | Type |
Expand Down
Loading

0 comments on commit 6b3113e

Please sign in to comment.