// Copyright 2001, FreeHEP. package org.freehep.graphicsio.cgm; import java.awt.geom.Point2D; import java.io.IOException; /** * FillReferencePoint TAG. * * @author Mark Donszelmann * @author Charles Loomis * @version $Id: FillReferencePoint.java 8584 2006-08-10 23:06:37Z duns $ */ public class FillReferencePoint extends CGMTag { private Point2D p; public FillReferencePoint() { super(5, 31, 1); } public FillReferencePoint(Point2D p) { this(); this.p = p; } public void write(int tagID, CGMOutputStream cgm) throws IOException { cgm.writePoint(p); } public void write(int tagID, CGMWriter cgm) throws IOException { cgm.print("FILLREFPT "); cgm.writePoint(p); } }