mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-19 23:12:21 +01:00
15 lines
243 B
JavaScript
15 lines
243 B
JavaScript
|
|
export class CompositeCurve {
|
|
|
|
constructor() {
|
|
this.curves = [];
|
|
this.points = [];
|
|
this.groups = [];
|
|
}
|
|
|
|
add(curve, point, group) {
|
|
this.curves.push(curve);
|
|
this.points.push(point);
|
|
this.groups.push(group);
|
|
}
|
|
}
|