/hg/gfx-test: Five new helper methods added into ClippingCircleB...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu May 23 02:00:46 PDT 2013


changeset d6873b45de6e in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=d6873b45de6e
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu May 23 11:04:10 2013 +0200

	Five new helper methods added into ClippingCircleByRectangleShape test suite.


diffstat:

 ChangeLog                                                      |    5 +
 src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java |  125 ++++++++++
 2 files changed, 130 insertions(+), 0 deletions(-)

diffs (154 lines):

diff -r f9cf11fe37b7 -r d6873b45de6e ChangeLog
--- a/ChangeLog	Wed May 22 10:18:54 2013 +0200
+++ b/ChangeLog	Thu May 23 11:04:10 2013 +0200
@@ -1,3 +1,8 @@
+2013-05-23  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java:
+	Five new helper methods added into ClippingCircleByRectangleShape test suite.
+
 2013-05-22  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java:
diff -r f9cf11fe37b7 -r d6873b45de6e src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java	Wed May 22 10:18:54 2013 +0200
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRectangleShape.java	Thu May 23 11:04:10 2013 +0200
@@ -120,6 +120,31 @@
 
     /**
      * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+     * black color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAlphaPaintBlack(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillBlackColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
      * red color and selected transparency.
      * 
      * @param image
@@ -194,6 +219,106 @@
     }
 
     /**
+     * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+     * magenta color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAlphaPaintMagenta(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillMagentaColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+     * cyan color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAlphaPaintCyan(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillCyanColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+     * yellow color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAlphaPaintYellow(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillYellowColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
+     * Draw circle clipped by rectangle. Circle is drawn using alpha paint with
+     * white color and selected transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @param transparency
+     *            selected transparency (0..100 percent)
+     */
+    private void drawCircleClippedByRectangleAlphaPaintWhite(TestImage image, Graphics2D graphics2d, int transparency)
+    {
+        // render clip rectangle
+        CommonClippingOperations.renderClipRectangle(image, graphics2d);
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTransparentFillWhiteColor(graphics2d, transparency);
+        // create clip area
+        CommonClippingOperations.createClipUsingRectangleShape(image, graphics2d);
+        // fill the shape
+        CommonShapesRenderer.drawFilledCircle(image, graphics2d);
+    }
+
+    /**
      * Check if circle shape could be clipped by a rectangle shape. Circle is
      * rendered using stroke paint.
      * 



More information about the distro-pkg-dev mailing list