diff --git a/README.md b/README.md index 10a0f9d..a33cc29 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Introduction -Detect-Collisions 🚀 is a lightning-fast ⚡️ TypeScript library built to detect collisions between diverse shapes like Points, Lines, Boxes, Polygons (including concave), Ellipses, and Circles. Utilizing Bounding Volume Hierarchy (BVH) and the Separating Axis Theorem (SAT), it offers rapid and accurate collision detection. The library supports RayCasting, offsets, rotation, scaling, and bounding box padding, with options for static and trigger bodies (non-colliding), making it an ideal choice for high-speed applications in gaming and simulations. +Detect-Collisions 💫 is a lightning-fast ⚡️ TypeScript library built to detect collisions between diverse shapes like Points, Lines, Boxes, Polygons (including concave), Ellipses, and Circles. Utilizing Bounding Volume Hierarchy (BVH) and the Separating Axis Theorem (SAT), it offers rapid and accurate collision detection. The library supports RayCasting, offsets, rotation, scaling, and optimizations for: bounding box, flags for non-moving and ghost/trigger bodies and collision filtering - making it an ideal choice for high-speed applications in gaming and simulations. ## Demos diff --git a/docs/index.html b/docs/index.html index 2728527..a60ffdf 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,7 +1,7 @@ Detect-Collisions

Detect-Collisions

Detect-Collisions

npm version npm downloads per week build status

-

Detect-Collisions 🚀 is a lightning-fast ⚡️ TypeScript library built to detect collisions between diverse shapes like Points, Lines, Boxes, Polygons (including concave), Ellipses, and Circles. Utilizing Bounding Volume Hierarchy (BVH) and the Separating Axis Theorem (SAT), it offers rapid and accurate collision detection. The library supports RayCasting, offsets, rotation, scaling, and bounding box padding, with options for static and trigger bodies (non-colliding), making it an ideal choice for high-speed applications in gaming and simulations.

+

Detect-Collisions 💫 is a lightning-fast ⚡️ TypeScript library built to detect collisions between diverse shapes like Points, Lines, Boxes, Polygons (including concave), Ellipses, and Circles. Utilizing Bounding Volume Hierarchy (BVH) and the Separating Axis Theorem (SAT), it offers rapid and accurate collision detection. The library supports RayCasting, offsets, rotation, scaling, and optimizations for: bounding box, flags for non-moving and ghost/trigger bodies and collision filtering - making it an ideal choice for high-speed applications in gaming and simulations.

  • Tank
  • Stress Test
  • diff --git a/package.json b/package.json index 0629737..e9a4a64 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "detect-collisions", - "version": "9.17.0", + "version": "9.18.0", "description": "Detect collisions between different shapes such as Points, Lines, Boxes, Polygons (including concave), Ellipses, and Circles. Features include RayCasting and support for offsets, rotation, scaling, bounding box padding, with options for static and trigger bodies (non-colliding).", "main": "dist/index.js", "types": "dist/index.d.ts",