UNPKG
@davepagurek/flo-mat
Version:
latest (3.0.2)
3.0.2
3.0.1
Medial / Scale Axis Transform (MAT/SAT) Library.
github.com/FlorisSteenkamp/mat
FlorisSteenkamp/mat
@davepagurek/flo-mat
/
src
/
debug
/
functions
/
draw-elem
/
loop.ts
17 lines
(12 loc)
•
301 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//import { Loop } from "../../../loop.js";
import
{
Loop
}
from
'flo-boolean'
;
/**
@internal
*/
function
loop
(
g: SVGGElement, loop: Loop
):
SVGElement
[] {
/* for (let curve of loop.curves) { drawFs.bezier(g, curve.ps, undefined, 1000); } */
return
[]; }
export
{ loop }