jsketcher/web/app/cad/stl/stl-data-structure.js
2018-01-17 00:06:31 -08:00

9 lines
No EOL
156 B
JavaScript

export function StlSolid(name) {
this.name = name;
this.faces = [];
}
export function StlFace(normal) {
this.normal = normal;
this.vertices = [];
}