@meta2d/core
Version:
@meta2d/core: Powerful, Beautiful, Simple, Open - Web-Based 2D At Its Best .
13 lines • 449 B
JavaScript
export function diamond(pen, ctx) {
const path = !ctx ? new Path2D() : ctx;
const { x, y, width, height } = pen.calculative.worldRect;
path.moveTo(x + width / 2, y);
path.lineTo(x + width, y + height / 2);
path.lineTo(x + width / 2, y + height);
path.lineTo(x, y + height / 2);
path.lineTo(x + width / 2, y);
path.closePath();
if (path instanceof Path2D)
return path;
}
//# sourceMappingURL=diamond.js.map