UNPKG

verlet

Version:
17 lines (10 loc) 480 B
//this exports all the verlet methods globally, so that the demos work. var VerletJS = require('./verlet') var constraint = require('./constraint') require('./objects') //patches VerletJS.prototype (bad) window.Vec2 = require('./vec2') window.VerletJS = VerletJS window.Particle = VerletJS.Particle window.DistanceConstraint = constraint.DistanceConstraint window.PinConstraint = constraint.PinConstraint window.AngleConstraint = constraint.AngleConstraint