mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
import * as math3d from 'math3d';
|
|
const v = new math3d.Vector3(1, 2, 3);
|
|
v.add(new math3d.Vector3(0, 0, 1));
|
|
new math3d.Matrix4x4([1,1,1,1,
|
|
2,2,2,2,
|
|
3,3,3,3,
|
|
4,4,4,4]);
|