mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2025-04-03 10:23:23 +02:00
25 lines
500 B
JavaScript
25 lines
500 B
JavaScript
import Shape from 'Doodle3D/clipper-js';
|
|
|
|
export default class {
|
|
constructor() {
|
|
this.parts = [];
|
|
}
|
|
getOutline() {
|
|
return this.parts.reduce((shape, part) => {
|
|
if (part.outerLine) shape.join(part.outerLine);
|
|
return shape;
|
|
}, new Shape([], true));
|
|
}
|
|
add(shape) {
|
|
const part = { shape };
|
|
|
|
if (shape.closed) {
|
|
part.innerLines = [];
|
|
part.outerLine = new Shape([], true);
|
|
part.fill = new Shape([], false);
|
|
}
|
|
|
|
this.parts.push(part);
|
|
}
|
|
}
|