UNPKG

@matematrolii/sketchbook

Version:

3D matematrolii playground built on three.js and cannon.js

10 lines (9 loc) 196 B
export class SimulationFrame { public position: number; public velocity: number; constructor(position: number, velocity: number) { this.position = position; this.velocity = velocity; } }