jsketcher/web/app/brep/geom/impl/uv.js
2017-04-12 16:56:22 -07:00

7 lines
No EOL
80 B
JavaScript

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