"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Vec3 = void 0; class Vec3 { constructor(x = 0, y = 0, z = 0) { this.x = x || 0; this.y = y || 0; this.z = z || 0; } } exports.Vec3 = Vec3;