UNPKG

@matematrolii/sketchbook

Version:

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

10 lines (9 loc) 230 B
export class SimulationFrameVector { public position: THREE.Vector3; public velocity: THREE.Vector3; constructor(position: THREE.Vector3, velocity: THREE.Vector3) { this.position = position; this.velocity = velocity; } }