Format cleanup

This commit is contained in:
be5invis 2022-07-17 00:31:02 -07:00
parent 36835216f5
commit e61edd0db9
13 changed files with 52 additions and 52 deletions

View file

@ -109,12 +109,12 @@ export class ReverseCurve {
export function convertShapeToArcs(shape) {
return shape.map(convertContourToArcs);
}
export const shapeToRep = function (shape) {
export function shapeToRep(shape) {
return shape.map(contourToRep);
};
export const repToShape = function (shapeRep) {
}
export function repToShape(shapeRep) {
return shapeRep.map(repToContour);
};
}
export class BezToContoursSink {
constructor(gizmo) {
this.gizmo = gizmo || Transform.Id();