protected PlaceObject path(PathNode node)
{
List<ShapeRecord> shapeRecords = ShapeHelper.path(node, (node.fill != null));
GraphicContext context = node.createGraphicContext();
Winding winding[] = new Winding[1];
winding[0] = node.winding;
PlaceObject po3 = placeDefineShape(node, shapeRecords, node.fill, node.stroke, context, winding);
return po3;
}