⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xypolygonannotation.java

📁 JfreeChart 常用图表例子
💻 JAVA
字号:
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. * * Project Info:  http://www.jfree.org/jfreechart/index.html * * This library is free software; you can redistribute it and/or modify it  * under the terms of the GNU Lesser General Public License as published by  * the Free Software Foundation; either version 2.1 of the License, or  * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public  * License for more details. * * You should have received a copy of the GNU Lesser General Public License  * along with this library; if not, write to the Free Software Foundation,  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc.  * in the United States and other countries.] * * ------------------------ * XYPolygonAnnotation.java * ------------------------ * (C) Copyright 2005, by Object Refinery Limited and Contributors. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   -; * * $Id: XYPolygonAnnotation.java,v 1.3 2005/05/19 15:41:53 mungady Exp $ * * Changes: * -------- * 09-Feb-2005 : Version 1 (DG); *  */ package org.jfree.chart.annotations;import java.awt.BasicStroke;import java.awt.Color;import java.awt.Graphics2D;import java.awt.Paint;import java.awt.Stroke;import java.awt.geom.GeneralPath;import java.awt.geom.Rectangle2D;import java.io.IOException;import java.io.ObjectInputStream;import java.io.ObjectOutputStream;import java.io.Serializable;import java.util.Arrays;import org.jfree.chart.axis.ValueAxis;import org.jfree.chart.plot.Plot;import org.jfree.chart.plot.PlotOrientation;import org.jfree.chart.plot.PlotRenderingInfo;import org.jfree.chart.plot.XYPlot;import org.jfree.io.SerialUtilities;import org.jfree.ui.RectangleEdge;import org.jfree.util.ObjectUtilities;import org.jfree.util.PublicCloneable;/** * A polygon annotation that can be placed on an {@link XYPlot}.  The  * polygon coordinates are specified in data space. */public class XYPolygonAnnotation extends AbstractXYAnnotation                                 implements Cloneable,                                             PublicCloneable,                                             Serializable {        /** For serialization. */    private static final long serialVersionUID = -6984203651995900036L;        /** The polygon. */    private double[] polygon;    /** The stroke used to draw the box outline. */    private transient Stroke stroke;    /** The paint used to draw the box outline. */    private transient Paint outlinePaint;        /** The paint used to fill the box. */    private transient Paint fillPaint;    /**     * Creates a new annotation (where, by default, the polygon is drawn      * with a black outline).     *      * @param polygon  the polygon coordinates.     */    public XYPolygonAnnotation(double[] polygon) {        this(polygon, new BasicStroke(1.0f), Color.black);    }        /**     * Creates a new annotation where the box is drawn as an outline using     * the specified <code>stroke</code> and <code>outlinePaint</code>.     *     * @param polygon  the polygon.     * @param stroke  the shape stroke (<code>null</code> not permitted).     * @param outlinePaint  the shape color (<code>null</code> not permitted).     */    public XYPolygonAnnotation(double[] polygon,                                Stroke stroke, Paint outlinePaint) {        this(polygon, stroke, outlinePaint, null);    }    /**     * Creates a new annotation.     *     * @param polygon  the polygon.     * @param stroke  the shape stroke (<code>null</code> permitted).     * @param outlinePaint  the shape color (<code>null</code> permitted).     * @param fillPaint  the paint used to fill the shape (<code>null</code>      *                   permitted).     */    public XYPolygonAnnotation(double[] polygon,                                Stroke stroke,                                Paint outlinePaint, Paint fillPaint) {        this.polygon = polygon;        this.stroke = stroke;        this.outlinePaint = outlinePaint;        this.fillPaint = fillPaint;    }    /**     * Draws the annotation.  This method is usually called by the      * {@link XYPlot} class, you shouldn't need to call it directly.     *     * @param g2  the graphics device.     * @param plot  the plot.     * @param dataArea  the data area.     * @param domainAxis  the domain axis.     * @param rangeAxis  the range axis.     * @param rendererIndex  the renderer index.     * @param info  the plot rendering info.     */    public void draw(Graphics2D g2, XYPlot plot, Rectangle2D dataArea,                     ValueAxis domainAxis, ValueAxis rangeAxis,                      int rendererIndex, PlotRenderingInfo info) {        PlotOrientation orientation = plot.getOrientation();        RectangleEdge domainEdge = Plot.resolveDomainAxisLocation(            plot.getDomainAxisLocation(), orientation        );        RectangleEdge rangeEdge = Plot.resolveRangeAxisLocation(            plot.getRangeAxisLocation(), orientation        );        GeneralPath area = new GeneralPath();        double x = domainAxis.valueToJava2D(            this.polygon[0], dataArea, domainEdge        );        double y = rangeAxis.valueToJava2D(            this.polygon[1], dataArea, rangeEdge        );        if (orientation == PlotOrientation.HORIZONTAL) {            area.moveTo((float) y, (float) x);            for (int i = 2; i < this.polygon.length; i += 2) {                x = domainAxis.valueToJava2D(                    this.polygon[i], dataArea, domainEdge                );                y = rangeAxis.valueToJava2D(                    this.polygon[i + 1], dataArea, rangeEdge                );                area.lineTo((float) y, (float) x);            }            area.closePath();        }        else if (orientation == PlotOrientation.VERTICAL) {            area.moveTo((float) x, (float) y);                        for (int i = 2; i < this.polygon.length; i += 2) {                x = domainAxis.valueToJava2D(                    this.polygon[i], dataArea, domainEdge                );                y = rangeAxis.valueToJava2D(                    this.polygon[i + 1], dataArea, rangeEdge                );                area.lineTo((float) x, (float) y);            }            area.closePath();       }                if (this.fillPaint != null) {            g2.setPaint(this.fillPaint);            g2.fill(area);        }                if (this.stroke != null && this.outlinePaint != null) {            g2.setPaint(this.outlinePaint);            g2.setStroke(this.stroke);            g2.draw(area);        }        addEntity(info, area, rendererIndex, getToolTipText(), getURL());            }            /**     * Tests this annotation for equality with an arbitrary object.     *      * @param obj  the object (<code>null</code> permitted).     *      * @return A boolean.     */    public boolean equals(Object obj) {        if (obj == this) {            return true;        }        // now try to reject equality        if (!super.equals(obj)) {            return false;        }        if (!(obj instanceof XYPolygonAnnotation)) {            return false;        }        XYPolygonAnnotation that = (XYPolygonAnnotation) obj;        if (!Arrays.equals(this.polygon, that.polygon)) {            return false;           }        if (!ObjectUtilities.equal(this.stroke, that.stroke)) {            return false;        }        if (!ObjectUtilities.equal(this.outlinePaint, that.outlinePaint)) {            return false;        }        if (!ObjectUtilities.equal(this.fillPaint, that.fillPaint)) {            return false;        }        // seem to be the same        return true;    }        /**     * Returns a clone.     *      * @return A clone.     *      * @throws CloneNotSupportedException not thrown by this class, but may be     *                                    by subclasses.     */    public Object clone() throws CloneNotSupportedException {        return super.clone();    }        /**     * Provides serialization support.     *     * @param stream  the output stream (<code>null</code> not permitted).     *     * @throws IOException if there is an I/O error.     */    private void writeObject(ObjectOutputStream stream) throws IOException {        stream.defaultWriteObject();        SerialUtilities.writeStroke(this.stroke, stream);        SerialUtilities.writePaint(this.outlinePaint, stream);        SerialUtilities.writePaint(this.fillPaint, stream);    }    /**     * Provides serialization support.     *     * @param stream  the input stream (<code>null</code> not permitted).     *     * @throws IOException  if there is an I/O error.     * @throws ClassNotFoundException  if there is a classpath problem.     */    private void readObject(ObjectInputStream stream)         throws IOException, ClassNotFoundException {                stream.defaultReadObject();        this.stroke = SerialUtilities.readStroke(stream);        this.outlinePaint = SerialUtilities.readPaint(stream);        this.fillPaint = SerialUtilities.readPaint(stream);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -