UNPKG

saints-specification-nodejs

Version:
19 lines (18 loc) 422 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ThreeDimension = exports.TwoDimension = void 0; class TwoDimension { constructor(x, y) { this.x = x; this.y = y; } } exports.TwoDimension = TwoDimension; class ThreeDimension { constructor(x, y, z) { this.x = x; this.y = y; this.z = z; } } exports.ThreeDimension = ThreeDimension;