// Lets build a path.
final SVGPath path = svgElement.createSVGPath();
final float x = Util.convertDefaultValue(153.0f, true);
final float y = Util.convertDefaultValue(334.0f, true);
path.moveTo(x, y);
float[] defaultValues =
{ 153.0f, 334.0f, 151.0f, 334.0f, 151.0f, 334.0f };
float[] convertedValues = Util.convertDefaultValue(defaultValues);
path.curveTo(convertedValues[0], convertedValues[1],