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