h.curvetoCubicSmoothAbs
(s.getX2(), s.getY2(), s.getX(), s.getY());
break;
}
case SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL: {
SVGPathSegCurvetoCubicSmoothRel s =
(SVGPathSegCurvetoCubicSmoothRel) seg;
h.curvetoCubicSmoothRel
(s.getX2(), s.getY2(), s.getX(), s.getY());
break;
}
case SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS: {
SVGPathSegCurvetoQuadraticSmoothAbs s =
(SVGPathSegCurvetoQuadraticSmoothAbs) seg;
h.curvetoQuadraticSmoothAbs(s.getX(), s.getY());
break;
}
case SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL: {
SVGPathSegCurvetoQuadraticSmoothRel s =
(SVGPathSegCurvetoQuadraticSmoothRel) seg;
h.curvetoQuadraticSmoothRel(s.getX(), s.getY());
break;
}
}
}
h.endPath();