@antv/x6
Version:
JavaScript diagramming library that uses SVG and HTML for rendering
18 lines • 661 B
JavaScript
import { __rest } from "tslib";
import { Path } from '../../geometry';
import { normalize } from './util';
export const diamond = (_a) => {
var { size, width, height, offset } = _a, attrs = __rest(_a, ["size", "width", "height", "offset"]);
const s = size || 10;
const w = width || s;
const h = height || s;
const path = new Path();
path
.moveTo(0, h / 2)
.lineTo(w / 2, 0)
.lineTo(w, h / 2)
.lineTo(w / 2, h)
.close();
return Object.assign(Object.assign({}, attrs), { tagName: 'path', d: normalize(path.serialize(), offset == null ? -w / 2 : offset) });
};
//# sourceMappingURL=diamond.js.map