jsketcher/web/app/cad/stl/stlDataStructure.js
2018-10-31 00:25:00 -07: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 = [];
}