mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2025-04-06 03:43:27 +02:00
32 lines
547 B
JavaScript
32 lines
547 B
JavaScript
import Shape from 'Doodle3D/clipper-js';
|
|
|
|
export default class {
|
|
constructor() {
|
|
this.parts = [];
|
|
}
|
|
getOutline() {
|
|
const outLines = new Shape([], true);
|
|
|
|
for (let i = 0; i < this.parts.length; i ++) {
|
|
const part = this.parts[i];
|
|
|
|
if (part.shape.closed) {
|
|
outLines.join(this.parts[i].outerLine);
|
|
}
|
|
}
|
|
|
|
return outLines;
|
|
}
|
|
add(shape) {
|
|
const part = { shape };
|
|
|
|
if (shape.closed) {
|
|
part.innerLines = [];
|
|
part.outerLine = new Shape([], true);
|
|
part.fill = new Shape([], false);
|
|
}
|
|
|
|
this.parts.push(part);
|
|
}
|
|
}
|