public class FillLineCurvePath
extends ClosedLineCurvePath
{...,"fill-line-curve-path", x0, y0, <connection-type> , <connection-type-args>, ... , "end", ...}
<connection-type>:
"line" | "curve"
<connection-type-args>:
"line": x,y
"curve": x1,y1 (first Bézier control point)
x2,y2 (second Bézier control point)
x3,y3 (final end point)
Example: "line-curve-path", 0.1, 0.1, "line", 0.9, 0.1, "curve", 0.7, 0.3, 0.7, 0.7, 0.9, 0.9,
"line", 0.1, 0.9, "curve", 0.3, 0.7, 0.3, 0.3, 0.1, 0.1, "end"