// Copyright 2002, FreeHEP. package org.freehep.graphicsio.emf.gdi; import com.google.code.appengine.awt.Point; import com.google.code.appengine.awt.Rectangle; import java.io.IOException; import org.freehep.graphicsio.emf.EMFInputStream; import org.freehep.graphicsio.emf.EMFOutputStream; import org.freehep.graphicsio.emf.EMFTag; /** * PolyBezierTo16 TAG. * * @author Mark Donszelmann * @version $Id: PolyBezierTo16.java 10367 2007-01-22 19:26:48Z duns $ */ public class PolyBezierTo16 extends PolyBezierTo { public PolyBezierTo16() { super(88, 1, null, 0, null); } public PolyBezierTo16(Rectangle bounds, int numberOfPoints, Point[] points) { super(88, 1, bounds, numberOfPoints, points); } public EMFTag read(int tagID, EMFInputStream emf, int len) throws IOException { Rectangle r = emf.readRECTL(); int n = emf.readDWORD(); return new PolyBezierTo16(r, n, emf.readPOINTS(n)); } public void write(int tagID, EMFOutputStream emf) throws IOException { emf.writeRECTL(getBounds()); emf.writeDWORD(getNumberOfPoints()); emf.writePOINTS(getNumberOfPoints(), getPoints()); } }