/hg/gfx-test: 2011-12-14 Pavel Tisnovsky <ptisnovs at redhat.com>
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Dec 14 01:46:02 PST 2011
changeset a156e47c8368 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=a156e47c8368
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Dec 14 10:48:19 2011 +0100
2011-12-14 Pavel Tisnovsky <ptisnovs at redhat.com>
*
src/org/gfxtest/testsuites/NormalQuadraticCurvesAsPaths.java:
Refactoring, added about twenty new tests to this test case,
improved Javadoc.
diffstat:
ChangeLog | 6 +
src/org/gfxtest/testsuites/NormalQuadraticCurvesAsPaths.java | 843 +++++++++-
2 files changed, 698 insertions(+), 151 deletions(-)
diffs (truncated from 1173 to 500 lines):
diff -r d55fc8062bd9 -r a156e47c8368 ChangeLog
--- a/ChangeLog Tue Dec 13 11:22:19 2011 +0100
+++ b/ChangeLog Wed Dec 14 10:48:19 2011 +0100
@@ -1,3 +1,9 @@
+2011-12-14 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/NormalQuadraticCurvesAsPaths.java:
+ Refactoring, added about twenty new tests to this test case, improved
+ Javadoc.
+
2011-12-13 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/NormalCubicCurvesAsPaths.java:
diff -r d55fc8062bd9 -r a156e47c8368 src/org/gfxtest/testsuites/NormalQuadraticCurvesAsPaths.java
--- a/src/org/gfxtest/testsuites/NormalQuadraticCurvesAsPaths.java Tue Dec 13 11:22:19 2011 +0100
+++ b/src/org/gfxtest/testsuites/NormalQuadraticCurvesAsPaths.java Wed Dec 14 10:48:19 2011 +0100
@@ -63,10 +63,6 @@
@Zoom(1)
public class NormalQuadraticCurvesAsPaths extends GfxTest
{
- /**
- * Default Y offset of curve end points.
- */
- private static final int DEFAULT_Y_OFFSET = 40;
/**
* Step between curves drawn by different colors onto the same image.
@@ -111,12 +107,12 @@
private void drawCrossesAtControlPoints(Graphics2D graphics, int width, int height)
{
// get curve coordinates
- int x1 = computeX1(width);
- int y1 = computeY1();
- int x2 = computeX2(width);
- int y2 = computeY2(height);
- int x3 = computeX3(width);
- int y3 = computeY3();
+ int x1 = CommonPathsGenerator.computeQuadraticPathX1(width);
+ int y1 = CommonPathsGenerator.computeQuadraticPathY1();
+ int x2 = CommonPathsGenerator.computeQuadraticPathX2(width);
+ int y2 = CommonPathsGenerator.computeQuadraticPathY2(height);
+ int x3 = CommonPathsGenerator.computeQuadraticPathX3(width);
+ int y3 = CommonPathsGenerator.computeQuadraticPathY3();
drawCrossesAtControlPoints(graphics, x1, y1, x2, y2, x3, y3);
}
@@ -179,7 +175,7 @@
* @param graphics
* graphics canvas
*/
- private void drawPathWithVariousColors(TestImage image, Graphics2D graphics)
+ private void drawPathWithVariousColorsFloat(TestImage image, Graphics2D graphics)
{
// calculate image dimensions
int width = image.getWidth();
@@ -195,9 +191,45 @@
for (Color color : colors)
{
// create new path
- Path2D path = new Path2D.Float();
- path.moveTo(computeX1(width), computeY1() + offset);
- path.quadTo(computeX2(width), computeY2(height) + offset, computeX3(width), computeY3() + offset);
+ Path2D path = CommonPathsGenerator.createQuadraticPathFloat(width, height, offset);
+
+ // set the specified color
+ graphics.setColor(color);
+
+ // draw QuadCurve2D
+ graphics.draw(path);
+
+ // move next curve down
+ offset += OFFSET_STEP;
+ }
+ }
+
+ /**
+ * Draw set of quadratic curves onto canvas specified by Graphics2D class.
+ * Curves are drawn using various colors.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics canvas
+ */
+ private void drawPathWithVariousColorsDouble(TestImage image, Graphics2D graphics)
+ {
+ // calculate image dimensions
+ int width = image.getWidth();
+ int height = image.getHeight();
+
+ // curve colors
+ Color[] colors = ColorPalette.getColors();
+
+ // offset counter
+ int offset = 0;
+
+ // Draw each curve with different color.
+ for (Color color : colors)
+ {
+ // create new path
+ Path2D path = CommonPathsGenerator.createQuadraticPathDouble(width, height, offset);
// set the specified color
graphics.setColor(color);
@@ -219,7 +251,7 @@
* @param graphics
* graphics canvas
*/
- private void drawPathWithVariousTransparency(TestImage image, Graphics2D graphics)
+ private void drawPathWithVariousTransparencyFloat(TestImage image, Graphics2D graphics)
{
// calculate image dimensions
int width = image.getWidth();
@@ -232,9 +264,7 @@
for (int transparency = 0; transparency < 16; transparency++)
{
// create new path
- Path2D path = new Path2D.Float();
- path.moveTo(computeX1(width), computeY1() + offset);
- path.quadTo(computeX2(width), computeY2(height) + offset, computeX3(width), computeY3() + offset);
+ Path2D path = CommonPathsGenerator.createQuadraticPathFloat(width, height, offset);
// set the specified color
graphics.setColor(new Color(0f, 0f, 0f, transparency / 16f));
@@ -248,39 +278,38 @@
}
/**
- * Create new path using Path2D.Float() which contains just one quadratic
- * curve.
+ * Draw set of quadratic curves onto canvas specified by Graphics2D class.
+ * Curves are drawn using various transparency.
*
- * @param width
- * canvas width
- * @param height
- * canvas height
- * @return created path
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics canvas
*/
- private Path2D createPathFloat(int width, int height)
+ private void drawPathWithVariousTransparencyDouble(TestImage image, Graphics2D graphics)
{
- Path2D path = new Path2D.Float();
- path.moveTo(computeX1(width), computeY1());
- path.quadTo(computeX2(width), computeY2(height), computeX3(width), computeY3());
- return path;
- }
+ // calculate image dimensions
+ int width = image.getWidth();
+ int height = image.getHeight();
+
+ // offset counter
+ int offset = 0;
- /**
- * Create new path using Path2D.Double() which contains just one quadratic
- * curve.
- *
- * @param width
- * canvas width
- * @param height
- * canvas height
- * @return created path
- */
- private Path2D createPathDouble(int width, int height)
- {
- Path2D path = new Path2D.Double();
- path.moveTo(computeX1(width), computeY1());
- path.quadTo(computeX2(width), computeY2(height), computeX3(width), computeY3());
- return path;
+ // Draw each curve with transparency
+ for (int transparency = 0; transparency < 16; transparency++)
+ {
+ // create new path
+ Path2D path = CommonPathsGenerator.createQuadraticPathDouble(width, height, offset);
+
+ // set the specified color
+ graphics.setColor(new Color(0f, 0f, 0f, transparency / 16f));
+
+ // draw QuadCurve2D
+ graphics.draw(path);
+
+ // move next curve down
+ offset += OFFSET_STEP;
+ }
}
/**
@@ -292,14 +321,36 @@
* graphics context for image
* @return test result status - PASSED, FAILED or ERROR
*/
- private TestResult createAndDrawPath(TestImage image, Graphics2D graphics)
+ private TestResult createAndDrawPathFloat(TestImage image, Graphics2D graphics)
{
// calculate image dimensions
int width = image.getWidth();
int height = image.getHeight();
// create new path
- Path2D path = createPathFloat(width, height);
+ Path2D path = CommonPathsGenerator.createQuadraticPathFloat(width, height);
+
+ // draw path
+ return drawPath(graphics, width, height, path);
+ }
+
+ /**
+ * Create quadratic cube and draw it.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ private TestResult createAndDrawPathDouble(TestImage image, Graphics2D graphics)
+ {
+ // calculate image dimensions
+ int width = image.getWidth();
+ int height = image.getHeight();
+
+ // create new path
+ Path2D path = CommonPathsGenerator.createQuadraticPathDouble(width, height);
// draw path
return drawPath(graphics, width, height, path);
@@ -321,7 +372,7 @@
int height = image.getHeight();
// create new path
- Path2D path = createPathFloat(width, height);
+ Path2D path = CommonPathsGenerator.createQuadraticPathFloat(width, height);
// draw path
return drawPath(graphics, width, height, path);
@@ -343,7 +394,7 @@
int height = image.getHeight();
// create new path
- Path2D path = createPathDouble(width, height);
+ Path2D path = CommonPathsGenerator.createQuadraticPathDouble(width, height);
// draw path
return drawPath(graphics, width, height, path);
@@ -360,13 +411,153 @@
* graphics context for image
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testZeroStroke(TestImage image, Graphics2D graphics)
+ public TestResult testZeroStrokeFloat(TestImage image, Graphics2D graphics)
{
// set zero pixels wide stroke
CommonRenderingStyles.setStrokeZeroThick(graphics);
// create quadratic path and draw it
- return createAndDrawPath(image, graphics);
+ return createAndDrawPathFloat(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered
+ * correctly. Curve is to be drawn with zero pixels wide stroke and default
+ * caps.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testZeroStrokeDouble(TestImage image, Graphics2D graphics)
+ {
+ // set zero pixels wide stroke
+ CommonRenderingStyles.setStrokeZeroThick(graphics);
+
+ // create quadratic path and draw it
+ return createAndDrawPathDouble(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered
+ * correctly. Curve is to be drawn with zero pixels wide stroke and butt
+ * caps.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testZeroStrokeCapsButtFloat(TestImage image, Graphics2D graphics)
+ {
+ // set zero pixels wide stroke
+ CommonRenderingStyles.setStrokeZeroThick(graphics, BasicStroke.CAP_BUTT);
+
+ // create quadratic path and draw it
+ return createAndDrawPathFloat(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered
+ * correctly. Curve is to be drawn with zero pixels wide stroke and butt
+ * caps.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testZeroStrokeCapsButtDouble(TestImage image, Graphics2D graphics)
+ {
+ // set zero pixels wide stroke
+ CommonRenderingStyles.setStrokeZeroThick(graphics, BasicStroke.CAP_BUTT);
+
+ // create quadratic path and draw it
+ return createAndDrawPathDouble(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered
+ * correctly. Curve is to be drawn with zero pixels wide stroke and round
+ * caps.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testZeroStrokeCapsRoundFloat(TestImage image, Graphics2D graphics)
+ {
+ // set zero pixels wide stroke
+ CommonRenderingStyles.setStrokeZeroThick(graphics, BasicStroke.CAP_ROUND);
+
+ // create quadratic path and draw it
+ return createAndDrawPathFloat(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered
+ * correctly. Curve is to be drawn with zero pixels wide stroke and default
+ * caps.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testZeroStrokeCapsRoundDouble(TestImage image, Graphics2D graphics)
+ {
+ // set zero pixels wide stroke
+ CommonRenderingStyles.setStrokeZeroThick(graphics, BasicStroke.CAP_ROUND);
+
+ // create quadratic path and draw it
+ return createAndDrawPathDouble(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered
+ * correctly. Curve is to be drawn with zero pixels wide stroke and square
+ * caps.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testZeroStrokeCapsSquareFloat(TestImage image, Graphics2D graphics)
+ {
+ // set zero pixels wide stroke
+ CommonRenderingStyles.setStrokeZeroThick(graphics, BasicStroke.CAP_SQUARE);
+
+ // create quadratic path and draw it
+ return createAndDrawPathFloat(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered
+ * correctly. Curve is to be drawn with zero pixels wide stroke and square
+ * caps.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testZeroStrokeCapsSquareDouble(TestImage image, Graphics2D graphics)
+ {
+ // set zero pixels wide stroke
+ CommonRenderingStyles.setStrokeZeroThick(graphics, BasicStroke.CAP_SQUARE);
+
+ // create quadratic path and draw it
+ return createAndDrawPathDouble(image, graphics);
}
/**
@@ -380,13 +571,33 @@
* graphics context for image
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testThickStroke(TestImage image, Graphics2D graphics)
+ public TestResult testThickStrokeFloat(TestImage image, Graphics2D graphics)
{
// set 10 pixels wide stroke
CommonRenderingStyles.setStrokeThickWidth(graphics);
// create quadratic path and draw it
- return createAndDrawPath(image, graphics);
+ return createAndDrawPathFloat(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered
+ * correctly. Curve is to be drawn with 10 pixels wide stroke and default
+ * caps.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testThickStrokeDouble(TestImage image, Graphics2D graphics)
+ {
+ // set 10 pixels wide stroke
+ CommonRenderingStyles.setStrokeThickWidth(graphics);
+
+ // create quadratic path and draw it
+ return createAndDrawPathDouble(image, graphics);
}
/**
@@ -400,13 +611,33 @@
* graphics context for image
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testThickStrokeCapsButt(TestImage image, Graphics2D graphics)
+ public TestResult testThickStrokeCapsButtFloat(TestImage image, Graphics2D graphics)
{
// set 10 pixels wide stroke
CommonRenderingStyles.setStrokeThickWidth(graphics, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL);
// create quadratic path and draw it
- return createAndDrawPath(image, graphics);
+ return createAndDrawPathFloat(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered correctly.
+ * Curve is to be drawn with 10 pixels wide stroke and the curve caps is set
+ * to CAP_BUTT.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
+ * graphics context for image
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testThickStrokeCapsButtDouble(TestImage image, Graphics2D graphics)
+ {
+ // set 10 pixels wide stroke
+ CommonRenderingStyles.setStrokeThickWidth(graphics, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL);
+
+ // create quadratic path and draw it
+ return createAndDrawPathDouble(image, graphics);
}
/**
@@ -420,13 +651,33 @@
* graphics context for image
* @return test result status - PASSED, FAILED or ERROR
*/
- public TestResult testThickStrokeCapsRound(TestImage image, Graphics2D graphics)
+ public TestResult testThickStrokeCapsRoundFloat(TestImage image, Graphics2D graphics)
{
// set 10 pixels wide stroke
CommonRenderingStyles.setStrokeThickWidth(graphics, BasicStroke.CAP_ROUND, BasicStroke.JOIN_BEVEL);
// create quadratic path and draw it
- return createAndDrawPath(image, graphics);
+ return createAndDrawPathFloat(image, graphics);
+ }
+
+ /**
+ * Test if quadratic curve created by Path2D.Float() is rendered correctly.
+ * Curve is to be drawn with 10 pixels wide stroke and the curve caps is set
+ * to CAP_ROUND.
+ *
+ * @param image
+ * image to which two dimensional shape is to be rendered
+ * @param graphics
More information about the distro-pkg-dev
mailing list