/hg/gfx-test: Set narrower width of horizontal, vertical and dia...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Sep 16 02:10:42 PDT 2011
changeset 871ca0408974 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=871ca0408974
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Sep 16 11:12:25 2011 +0200
Set narrower width of horizontal, vertical and diagonal gradient
fills in src/org/gfxtest/framework/CommonRenderingStyles.java. Added
25 new tests for a total of 40 tests to the following test suite:
src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java.
diffstat:
ChangeLog | 8 +
src/org/gfxtest/framework/CommonRenderingStyles.java | 6 +
src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java | 712 ++++++++++++-
3 files changed, 669 insertions(+), 57 deletions(-)
diffs (truncated from 957 to 500 lines):
diff -r eb9f92bf70f5 -r 871ca0408974 ChangeLog
--- a/ChangeLog Thu Sep 15 11:46:42 2011 +0200
+++ b/ChangeLog Fri Sep 16 11:12:25 2011 +0200
@@ -1,3 +1,11 @@
+2011-09-16 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/CommonRenderingStyles.java:
+ Set narrower width of horizontal, vertical and diagonal gradient
+ fills.
+ * src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java:
+ Added 25 new tests for a total of 40 tests in this test suite.
+
2011-09-15 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/CAGOperationsOnCircles.java:
diff -r eb9f92bf70f5 -r 871ca0408974 src/org/gfxtest/framework/CommonRenderingStyles.java
--- a/src/org/gfxtest/framework/CommonRenderingStyles.java Thu Sep 15 11:46:42 2011 +0200
+++ b/src/org/gfxtest/framework/CommonRenderingStyles.java Fri Sep 16 11:12:25 2011 +0200
@@ -280,6 +280,8 @@
// calculate radius of circle
int radius = CommonShapesRenderer.calculateRadius(image);
+ // set smaller radius to better see the gradient
+ radius = radius >> 1;
GradientPaint gradientPaint = new GradientPaint(xc - radius + offset, yc, color1, xc + radius - offset, yc, color2);
graphics.setPaint(gradientPaint);
@@ -354,6 +356,8 @@
// calculate radius of circle
int radius = CommonShapesRenderer.calculateRadius(image);
+ // set smaller radius to better see the gradient
+ radius = radius >> 1;
GradientPaint gradientPaint = new GradientPaint(xc, yc - radius + offset, color1, xc, yc + radius - offset, color2);
graphics.setPaint(gradientPaint);
@@ -431,6 +435,8 @@
// calculate radius of circle
int radius = CommonShapesRenderer.calculateRadius(image);
+ // set smaller radius to better see color gradient
+ radius = radius >> 1;
int r2 = (int)(radius * SIN_COS_45 );
int delta = (int) (offset * SIN_COS_45);
diff -r eb9f92bf70f5 -r 871ca0408974 src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java Thu Sep 15 11:46:42 2011 +0200
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnRectangles.java Fri Sep 16 11:12:25 2011 +0200
@@ -40,8 +40,6 @@
package org.gfxtest.testsuites;
-
-
import java.awt.Graphics2D;
import java.awt.geom.Area;
import java.awt.geom.Rectangle2D;
@@ -240,14 +238,14 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testUnionStrokePaint(TestImage image, Graphics2D graphics)
+ public TestResult testUnionStrokePaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// create area using union operator
Area area = createAreaFromRectanglesUsingUnionOperator(image);
// draw the area
- graphics.draw(area);
+ graphics2d.draw(area);
return TestResult.PASSED;
}
@@ -262,14 +260,14 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testSubtractStrokePaint(TestImage image, Graphics2D graphics)
+ public TestResult testSubtractStrokePaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// create area using subtract operator
Area area = createAreaFromRectanglesUsingSubtractOperator(image);
// draw the area
- graphics.draw(area);
+ graphics2d.draw(area);
return TestResult.PASSED;
}
@@ -284,14 +282,14 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testInverseSubtractStrokePaint(TestImage image, Graphics2D graphics)
+ public TestResult testInverseSubtractStrokePaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// create area using inverse subtract operator
Area area = createAreaFromRectanglesUsingInverseSubtractOperator(image);
// draw the area
- graphics.draw(area);
+ graphics2d.draw(area);
return TestResult.PASSED;
}
@@ -306,14 +304,14 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testIntersectStrokePaint(TestImage image, Graphics2D graphics)
+ public TestResult testIntersectStrokePaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// create area using intersect operator
Area area = createAreaFromRectanglesUsingIntersectOperator(image);
// draw the area
- graphics.draw(area);
+ graphics2d.draw(area);
return TestResult.PASSED;
}
@@ -328,14 +326,254 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testXorStrokePaint(TestImage image, Graphics2D graphics)
+ public TestResult testXorStrokePaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// create area using XOR operator
Area area = createAreaFromRectanglesUsingXorOperator(image);
// draw the area
- graphics.draw(area);
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using union operator. The shape is
+ * rendered using wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testUnionWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using union operator
+ Area area = createAreaFromRectanglesUsingUnionOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using subtract operator. The shape is
+ * rendered using wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testSubtractWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using subtract operator
+ Area area = createAreaFromRectanglesUsingSubtractOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using inverse subtract operator. The
+ * shape is rendered using wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testInverseSubtractWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using inverse subtract operator
+ Area area = createAreaFromRectanglesUsingInverseSubtractOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using intersect operator. The
+ * shape is rendered using wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testIntersectWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using intersect operator
+ Area area = createAreaFromRectanglesUsingIntersectOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using XOR operator. The
+ * shape is rendered using wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testXorWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+ // create area using XOR operator
+ Area area = createAreaFromRectanglesUsingXorOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using union operator. The shape is
+ * rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testUnionExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using union operator
+ Area area = createAreaFromRectanglesUsingUnionOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using subtract operator. The shape is
+ * rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testSubtractExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using subtract operator
+ Area area = createAreaFromRectanglesUsingSubtractOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using inverse subtract operator. The
+ * shape is rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testInverseSubtractExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using inverse subtract operator
+ Area area = createAreaFromRectanglesUsingInverseSubtractOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using intersect operator. The
+ * shape is rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testIntersectExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using intersect operator
+ Area area = createAreaFromRectanglesUsingIntersectOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using XOR operator. The
+ * shape is rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which line is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testXorExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using XOR operator
+ Area area = createAreaFromRectanglesUsingXorOperator(image);
+ // draw the area
+ graphics2d.draw(area);
return TestResult.PASSED;
}
@@ -350,16 +588,16 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testUnionColorPaint(TestImage image, Graphics2D graphics)
+ public TestResult testUnionColorPaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// set fill color
- CommonRenderingStyles.setFillColor(graphics);
+ CommonRenderingStyles.setFillColor(graphics2d);
// create area using union operator
Area area = createAreaFromRectanglesUsingUnionOperator(image);
// draw the area
- graphics.fill(area);
+ graphics2d.fill(area);
return TestResult.PASSED;
}
@@ -374,16 +612,16 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testSubtractColorPaint(TestImage image, Graphics2D graphics)
+ public TestResult testSubtractColorPaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// set fill color
- CommonRenderingStyles.setFillColor(graphics);
+ CommonRenderingStyles.setFillColor(graphics2d);
// create area using subtract operator
Area area = createAreaFromRectanglesUsingSubtractOperator(image);
// draw the area
- graphics.fill(area);
+ graphics2d.fill(area);
return TestResult.PASSED;
}
@@ -398,16 +636,16 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testInverseSubtractColorPaint(TestImage image, Graphics2D graphics)
+ public TestResult testInverseSubtractColorPaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// set fill color
- CommonRenderingStyles.setFillColor(graphics);
+ CommonRenderingStyles.setFillColor(graphics2d);
// create area using inverse subtract operator
Area area = createAreaFromRectanglesUsingInverseSubtractOperator(image);
// draw the area
- graphics.fill(area);
+ graphics2d.fill(area);
return TestResult.PASSED;
}
@@ -422,16 +660,16 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testIntersectColorPaint(TestImage image, Graphics2D graphics)
+ public TestResult testIntersectColorPaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// set fill color
- CommonRenderingStyles.setFillColor(graphics);
+ CommonRenderingStyles.setFillColor(graphics2d);
// create area using intersect operator
Area area = createAreaFromRectanglesUsingIntersectOperator(image);
// draw the area
- graphics.fill(area);
+ graphics2d.fill(area);
return TestResult.PASSED;
}
@@ -446,16 +684,16 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testXorColorPaint(TestImage image, Graphics2D graphics)
+ public TestResult testXorColorPaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
- CommonRenderingStyles.setStrokeColor(graphics);
+ CommonRenderingStyles.setStrokeColor(graphics2d);
// set fill color
- CommonRenderingStyles.setFillColor(graphics);
+ CommonRenderingStyles.setFillColor(graphics2d);
// create area using XOR operator
Area area = createAreaFromRectanglesUsingXorOperator(image);
// draw the area
- graphics.fill(area);
+ graphics2d.fill(area);
return TestResult.PASSED;
}
@@ -470,16 +708,16 @@
* graphics canvas
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testUnionHorizontalGradiendPaint(TestImage image, Graphics2D graphics)
+ public TestResult testUnionHorizontalGradientPaint(TestImage image, Graphics2D graphics2d)
{
// set stroke color
More information about the distro-pkg-dev
mailing list