Skip to content

kirbysayshi/pocket-physics

Repository files navigation

pocket-physics

Demos at https://kirbysayshi.github.io/pocket-physics.

Fully typed, as it's written in Typescript!

npm install pocket-physics
var { accelerate, inertia } = require("pocket-physics");

var point = {
  cpos: { x: 0, y: 0 },
  ppos: { x: 0, y: 0 },
  acel: { x: 10, y: 0 },
};

// 16 is the delta time between steps in milliseconds
accelerate(point1, 16);
inertia(point);

console.log(point.cpos);
// { x: 5.12, y: 0 }

Maintenance

Demos to gh-pages:

yarn demos:deploy

Publishing:

npm version [...]
git push origin HEAD --tags
npm publish

LICENSE

MIT

About

Verlet physics extracted from pocket-ces demos

Resources

Stars

Watchers

Forks

Packages

No packages published