export class Vector3d { x: number; y: number; z: number; constructor(x= 0, y= 0, z= 0) { this.x = x; this.y = y; this.z = z; } }