JavaScripting

The definitive source of the best
JavaScript libraries, frameworks, and plugins.


  • ×

    Verlet JS

    A simple Verlet physics engine written in javascript
    Filed under 

    • 🔾51%Overall
    • 3,748
    • 65.1 days
    • 🕩461
    • 👥4

    verlet-js

    A simple Verlet (pronounced 'ver-ley') physics engine written in javascript.

    Particles, distance constraints, and angular constraints are all supported by verlet-js. From these primitives it is possible to construct just about anything you can imagine.

    License

    You may use verlet-js under the terms of the MIT License (See LICENSE).

    Examples

    1. Shapes (verlet-js Hello world)
    2. Fractal Trees
    3. Cloth
    4. Spiderweb

    Code Layout

    1. js/verlet-js/vec2.js: 2d vector implementation
    2. js/verlet-js/constraint.js: constraint code
    3. js/verlet-js/verlet.js: verlet-js engine
    4. js/verlet-js/objects.js: shapes and objects (triangles, circles, tires..)

    Build for npm

    npm run build
    
    Show All