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

📄 lineutilitiestests.java

📁 jfreechart-1.0.12 开发包和文档等
💻 JAVA
字号:
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2008, 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, * USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc. * in the United States and other countries.] * * ----------------------- * LineUtilitiesTests.java * ----------------------- * (C) Copyright 2008, by Object Refinery Limited and Contributors. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   -; * * Changes * ------- * 05-Nov-2008 : Version 1 (DG); * */package org.jfree.chart.util.junit;import java.awt.geom.Line2D;import java.awt.geom.Rectangle2D;import junit.framework.Test;import junit.framework.TestCase;import junit.framework.TestSuite;import org.jfree.chart.util.LineUtilities;/** * Tests for the {@link LineUtilities} class. */public class LineUtilitiesTests extends TestCase {    /**     * Returns the tests as a test suite.     *     * @return The test suite.     */    public static Test suite() {        return new TestSuite(LineUtilitiesTests.class);    }    /**     * Constructs a new set of tests.     *     * @param name  the name of the tests.     */    public LineUtilitiesTests(String name) {        super(name);    }    private boolean lineEquals(Line2D line, double x1, double y1, double x2,            double y2) {        boolean result = true;        double epsilon = 0.0000000001;        if (Math.abs(line.getX1() - x1) > epsilon) result = false;        if (Math.abs(line.getY1() - y1) > epsilon) result = false;        if (Math.abs(line.getX2() - x2) > epsilon) result = false;        if (Math.abs(line.getY2() - y2) > epsilon) result = false;        if (result == false) {            System.out.println(line.getX1() + ", " + line.getY1() + ", "                    + line.getX2() + ", " + line.getY2());        }        return result;    }    public void testClipLine() {        Rectangle2D rect = new Rectangle2D.Double(1.0, 1.0, 1.0, 1.0);        Line2D line = new Line2D.Double();        assertFalse(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 0.0, 0.0, 0.0, 0.0));        line.setLine(0.5, 0.5, 0.6, 0.6);        assertFalse(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 0.5, 0.5, 0.6, 0.6));        line.setLine(0.5, 0.5, 1.6, 0.6);        assertFalse(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 0.5, 0.5, 1.6, 0.6));        line.setLine(0.5, 0.5, 2.6, 0.6);        assertFalse(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 0.5, 0.5, 2.6, 0.6));        line.setLine(0.5, 0.5, 0.6, 1.6);        assertFalse(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 0.5, 0.5, 0.6, 1.6));        line.setLine(0.5, 0.5, 1.6, 1.6);        assertTrue(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 1.0, 1.0, 1.6, 1.6));        line.setLine(0.5, 0.5, 2.6, 1.6);        assertTrue(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 1.4545454545454546, 1.0, 2.0,                1.2857142857142858));        line.setLine(0.5, 0.5, 0.5, 2.6);        assertFalse(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 0.5, 0.5, 0.5, 2.6));        line.setLine(0.5, 0.5, 1.5, 2.6);        assertTrue(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 1.0, 1.55, 1.2142857142857142, 2.0));        line.setLine(0.5, 0.5, 2.5, 2.6);        assertTrue(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 1.0, 1.025, 1.9285714285714284, 2.0));        line.setLine(0.5, 0.5, 1.5, 1.5);        assertTrue(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 1.0, 1.0, 1.5, 1.5));        line.setLine(2.5, 1.0, 1.5, 1.5);        assertTrue(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 2.0, 1.25, 1.5, 1.5));        line.setLine(1.5, 1.5, 2.5, 1.0);        assertTrue(LineUtilities.clipLine(line, rect));        assertTrue(lineEquals(line, 1.5, 1.5, 2.0, 1.25));    }}

⌨️ 快捷键说明

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