// in the PlaceObject3Tag3 Matrix and instead start the shape from the
// origin (0.0, 0.0).
Ellipse2D.Double ellipse = new Ellipse2D.Double(0.0, 0.0, node.width, node.height);
ShapeBuilder builder = new ShapeBuilder();
IShapeIterator iterator = new PathIteratorWrapper(ellipse.getPathIterator(null));
builder.processShape(iterator);
Shape shape = builder.build();
return placeDefineShapeTag(node, shape.getShapeRecords(), node.fill, node.stroke, node.createGraphicContext());
}