/hg/gfx-test: Added the SpecialCase.java file. (I'm sorry, I for...
dlila at icedtea.classpath.org
dlila at icedtea.classpath.org
Fri Sep 24 08:30:06 PDT 2010
changeset efdbddf209db in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=efdbddf209db
author: Denis Lila <dlila at redhat.com>
date: Fri Sep 24 11:30:24 2010 -0400
Added the SpecialCase.java file. (I'm sorry, I forgot to do hg add
when pushing the previous changeset)
diffstat:
1 file changed, 188 insertions(+)
src/org/gfxtest/testsuites/SpecialCases.java | 188 ++++++++++++++++++++++++++
diffs (192 lines):
diff -r cc2470527f60 -r efdbddf209db src/org/gfxtest/testsuites/SpecialCases.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/testsuites/SpecialCases.java Fri Sep 24 11:30:24 2010 -0400
@@ -0,0 +1,188 @@
+/*
+ Java gfx-test framework
+
+ Copyright (C) 2010 Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea 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
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.testsuites;
+
+import java.awt.*;
+import java.awt.geom.Path2D.Double;
+import java.awt.geom.Path2D;
+
+import org.gfxtest.framework.*;
+import org.gfxtest.framework.annotations.*;
+
+import java.awt.image.BufferedImage;
+
+/**
+ * This test renders various special cases, such as curves with cusps, curves
+ * with identical control points, curves with width such that the offset curves
+ * have cusps, curves with very high curvatures, paths such as moveTo(0, 0);
+ * p.lineTo(100,100);p.lineTo(100,100); (we test this last one to make sure
+ * that the join is drawn even though the lines are at an angle of 180 degrees.
+ * For each path, we draw it, and we also draw its stroked version.
+ *
+ * @author Pavel Tisnovsky
+ * @author Denis Lila
+ */
+ at TestType(TestTypes.RENDER_TEST)
+ at RenderStyle(RenderStyles.NORMAL)
+ at Transformation(Transformations.NONE)
+ at Zoom(1)
+public class SpecialCases extends GfxTest
+{
+ private void drawPath(Path2D p, float pw, Graphics2D g, int w) {
+ BasicStroke s = new BasicStroke(pw, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_ROUND);
+ g.setColor(java.awt.Color.black);
+ Shape shape = s.createStrokedShape(p);
+ g.draw(shape);
+ g.translate(w, 0);
+ Stroke orig = g.getStroke();
+ g.setStroke(s);
+ g.draw(p);
+ g.setStroke(orig);
+ g.translate(-w, 0);
+ }
+
+ public TestResult testIdenticalCtrlCub(TestImage image, Graphics2D graphics)
+ {
+ int w = image.getWidth()/2;
+ int h = image.getHeight();
+ int s = Math.min(w, h);
+ Path2D p = new Path2D.Double();
+ p.moveTo(0, 0);
+ // identical first 2 points
+ p.curveTo(0, 0, 0.1*s, 0.2*s, 0.2*s, 0.2*s);
+ // identical 2nd and 3rd points
+ p.curveTo(0.35*s, 0.8*s, 0.35*s, 0.8*s, 0.45*s, 0.1*s);
+ // identical 3rd and 4th points.
+ p.curveTo(0.60*s, 0.1*s, 0.60*s, 0.70*s, 0.60*s, 0.70*s);
+ // identical first 3 points
+ p.curveTo(0.6*s, 0.7*s, 0.6*s, 0.7*s, 0.5*s, 0.8*s);
+ // identical last 3 points
+ p.curveTo(0.3*s, 0.8*s, 0.3*s, 0.8*s, 0.3*s, 0.8*s);
+ // all points identical
+ p.moveTo(0.1*s, 0.8*s);p.curveTo(0.1*s, 0.8*s, 0.1*s, 0.8*s, 0.1*s, 0.8*s);
+ drawPath(p, 0.15f*s, graphics, w);
+ return TestResult.PASSED;
+ }
+ public TestResult testIdenticalCtrlQuad(TestImage image, Graphics2D graphics)
+ {
+ int w = image.getWidth()/2;
+ int h = image.getHeight();
+ int s = Math.min(w, h);
+ Path2D p = new Path2D.Double();
+ p.moveTo(0, 0);
+ // identical first 2 points
+ p.quadTo(0, 0, 0.1*s, 0.2*s);
+ // identical 2nd and 3rd points
+ p.quadTo(0.7*s, 0.6*s, 0.7*s, 0.6*s);
+ // no identical points. We just want to see what a quad looks like.
+ p.quadTo(1.0*s, 0.7*s, 0.1*s, 0.8*s);
+ // all points identical
+ p.moveTo(0.7*s, 0.3*s);p.quadTo(0.7*s, 0.3*s, 0.7*s, 0.3*s);
+ drawPath(p, 0.2f*s, graphics, w);
+ return TestResult.PASSED;
+ }
+ public TestResult test180Turn(TestImage im, Graphics2D g) {
+ int w = im.getWidth()/2;
+ int h = im.getHeight();
+ int s = Math.min(w, h);
+ int numlines = 6;
+ double cx = 0.5*s, cy = 0.5 * s;
+ for (int i = 0; i < numlines; i++) {
+ double dx = 0.4*s * Math.cos((i * 2 * Math.PI) / numlines);
+ double dy = 0.4*s * Math.sin((i * 2 * Math.PI) / numlines);
+ Path2D p = new Path2D.Double();
+ p.moveTo(cx, cy);
+ p.lineTo(cx + dx, cy + dy);
+ p.lineTo(cx, cy);
+ drawPath(p, (float)Math.pow(0.05*s*(i+1), 0.8), g, w);
+ }
+ return TestResult.PASSED;
+ }
+ public TestResult testClose(TestImage im, Graphics2D g) {
+ int w = im.getWidth()/2;
+ int h = im.getHeight();
+ int s = Math.min(w, h);
+ Path2D p = new Path2D.Double();
+ p.moveTo(0.1*s, 0.1*s);
+ p.lineTo(0.8*s, 0.4*s);
+ p.quadTo(0.55*s, 1.0*s, 0.6*s, 0.5*s);
+ p.curveTo(0.1*s, 0.3*s, 0.0*s, 0.9*s, 0.65*s, 0.9*s);
+ p.closePath();
+ drawPath(p, 0.1f*s, g, w);
+ return TestResult.PASSED;
+ }
+ public TestResult testSharpTurn1(TestImage im, Graphics2D g) {
+ int w = im.getWidth()/2;
+ int h = im.getHeight();
+ int s = Math.min(w, h);
+ Path2D p = new Path2D.Double();
+ p.moveTo(0, 0);
+ p.curveTo(s, s, 0.4*s, 0.6*s, 0.1*s, -0.36*s);
+ drawPath(p, 0.25f*s, g, w);
+ return TestResult.PASSED;
+ }
+ public TestResult testSharpTurn2(TestImage im, Graphics2D g) {
+ int w = im.getWidth()/2;
+ int h = im.getHeight();
+ int s = Math.min(w, h);
+ Path2D p = new Path2D.Double();
+ p.moveTo(0, 0);
+ p.curveTo(s, s, 0.4*s, 0.6*s, 0.1*s, -0.375*s);
+ drawPath(p, 0.25f*s, g, w);
+ return TestResult.PASSED;
+ }
+ public TestResult testCusp(TestImage im, Graphics2D g) {
+ int w = im.getWidth()/2;
+ int h = im.getHeight();
+ int s = Math.min(w, h);
+ Path2D p = new Path2D.Double();
+ p.moveTo(0.1*s, 0.1*s);
+ p.curveTo(0.9*s, 0.9*s, 0.1*s, 0.9*s, 0.9*s, 0.1*s);
+ drawPath(p, 0.45f*s, g, w);
+ return TestResult.PASSED;
+ }
+
+ public static void main(String[] args)
+ {
+ new SpecialCases().runTestSuite(args);
+ }
+}
+
More information about the distro-pkg-dev
mailing list