9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
export class Geometry {
|
|
valueOf() {
|
|
return this.toJSON();
|
|
}
|
|
toString() {
|
|
return JSON.stringify(this.toJSON());
|
|
}
|
|
}
|
|
//# sourceMappingURL=geometry.js.map
|