function addShape(ps, shapeName) {
let shape;
if (shapeName === "circle") {
shape = new ps.Path.Circle(ps.project.view.center, 40);
shape.strokeColor = "black";
shape.strokeWidth = 2;
shape.callParams = { r: 40, op: "circle" };
} else if (shapeName === "rectangle") {
shape = new ps.Path.Rectangle(ps.project.view.center, new ps.Size(100, 75));
shape.strokeColor = "black";
shape.strokeWidth = 2;
shape.callParams = {
width: 100,
height: 75,
op: "rectangle"
};
} else {
return;
}
shape.callParams = {
...shape.callParams,
x: DRAWING_PAD_WIDTH / 2,
y: DRAWING_PAD_HEIGHT / 2,
staged: false,
cutSide: "outside",
obj: shape
};
ps.project.activeLayer.children["shapes"].addChild(shape);
saveCanvasState(ps.project);
}