@jenskrumsieck/moleculesjs
Version:
Some TypeScript Molecule Parsers
24 lines (23 loc) • 382 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Vector3 = void 0;
class Vector3 {
x;
y;
z;
constructor(x, y, z) {
this.x = x;
this.y = y;
this.z = z;
}
setX(x) {
this.x = x;
}
setY(y) {
this.y = y;
}
setZ(z) {
this.z = z;
}
}
exports.Vector3 = Vector3;