protected FillStyle createFillStyle(RadialGradientStrokeNode node, Rect bounds)
{
FillStyle fs = new FillStyle();
fs.type = FillStyle.FILL_FOCAL_RADIAL_GRADIENT;
fs.matrix = TypeHelper.radialGradientMatrix(node, bounds);
FocalGradient gradient = new FocalGradient();
populateGradient(gradient, node.entries, node.interpolationMethod, node.spreadMethod);
gradient.focalPoint = (float)node.focalPointRatio;
fs.gradient = gradient;
return fs;