jsketcher/modules/geom/impl/uv.js
Val Erastov (xibyte) e11c1f7f4a geom module
2020-07-19 22:37:24 -07:00

7 lines
No EOL
80 B
JavaScript

export class UV {
constructor(u, v) {
this.u = u;
this.v = v;
}
}