AmmoPhysics.d.ts 218 B

123456789101112
  1. import {
  2. Mesh,
  3. Vector3
  4. } from '../../../src/Three';
  5. export class AmmoPhysics {
  6. constructor();
  7. addMesh( mesh: Mesh, mass: number ): void;
  8. setMeshPosition( mesh: Mesh, position: Vector3, index: number ): void;
  9. }