@davepagurek/flo-mat
Version:
Medial / Scale Axis Transform (MAT/SAT) Library.
16 lines (9 loc) • 318 B
text/typescript
import { drawFs } from 'flo-draw';
import { CpNode } from '../../../cp-node/cp-node.js';
/** @internal */
function maxVertex(g: SVGGElement, cpNode: CpNode) {
const circle = cpNode.cp.circle;
const $elems = drawFs.circle(g, circle, 'brown thin10 nofill');
return $elems;
}
export { maxVertex }