jsketcher/web/app/3d/stl/stl-data-structure.js
2016-11-23 19:27:33 -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 = [];
}