mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
9 lines
No EOL
156 B
JavaScript
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 = [];
|
|
} |