13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Geometry = void 0;
|
|
class Geometry {
|
|
valueOf() {
|
|
return this.toJSON();
|
|
}
|
|
toString() {
|
|
return JSON.stringify(this.toJSON());
|
|
}
|
|
}
|
|
exports.Geometry = Geometry;
|
|
//# sourceMappingURL=geometry.js.map
|