1
0
Fork 0
freesewing/plugins/plugin-annotations/src/notches.mjs
2023-04-21 03:48:37 +00:00

19 lines
392 B
JavaScript

// Export hooks
export const notchesDefs = [
{
name: 'notch',
def: `
<g id="notch">
<circle cy="0" cx="0" r="1.4" class="fill-note" />
<circle cy="0" cx="0" r="2.8" class="note" />
</g>`,
},
{
name: 'bnotch',
def: `
<g id="bnotch">
<path d="M -1.1 -1.1 L 1.1 1.1 M 1.1 -1.1 L -1.1 1.1" class="note" />
<circle cy="0" cx="0" r="2.8" class="note" />
</g>`,
},
]