geometry.js 183 B

123456789
  1. export class Geometry {
  2. valueOf() {
  3. return this.toJSON();
  4. }
  5. toString() {
  6. return JSON.stringify(this.toJSON());
  7. }
  8. }
  9. //# sourceMappingURL=geometry.js.map