/hg/gfx-test: Four helper methods for working with pie shapes ad...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Dec 11 01:43:27 PST 2013


changeset d85e9ee50403 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=d85e9ee50403
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Dec 11 10:47:25 2013 +0100

	Four helper methods for working with pie shapes added into
	the class CommonCAGOperations.


diffstat:

 ChangeLog                                          |   6 ++
 src/org/gfxtest/framework/CommonCAGOperations.java |  64 ++++++++++++++++++++++
 2 files changed, 70 insertions(+), 0 deletions(-)

diffs (87 lines):

diff -r 7dbf937891f8 -r d85e9ee50403 ChangeLog
--- a/ChangeLog	Tue Dec 10 11:46:36 2013 +0100
+++ b/ChangeLog	Wed Dec 11 10:47:25 2013 +0100
@@ -1,3 +1,9 @@
+2013-12-11  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/framework/CommonCAGOperations.java:
+	Four helper methods for working with pie shapes added into
+	the class CommonCAGOperations.
+
 2013-12-10  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java:
diff -r 7dbf937891f8 -r d85e9ee50403 src/org/gfxtest/framework/CommonCAGOperations.java
--- a/src/org/gfxtest/framework/CommonCAGOperations.java	Tue Dec 10 11:46:36 2013 +0100
+++ b/src/org/gfxtest/framework/CommonCAGOperations.java	Wed Dec 11 10:47:25 2013 +0100
@@ -887,6 +887,70 @@
     }
 
     /**
+     * Create new area constructed from bigger pie and rectangle using intersect
+     * operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area
+     */
+    public static Area createAreaFromBiggerPieAndRectangleUsingIntersectOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createBiggerCenteredPieArea(image));
+        area.intersect(createCenteredRectangularArea(image));
+        return area;
+    }
+
+    /**
+     * Create new area constructed from bigger pie and rectangle using subtract
+     * operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area
+     */
+    public static Area createAreaFromBiggerPieAndRectangleUsingSubtractOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createBiggerCenteredPieArea(image));
+        area.subtract(createCenteredRectangularArea(image));
+        return area;
+    }
+
+    /**
+     * Create new area constructed from bigger pie and rectangle using inverse subtract
+     * operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area
+     */
+    public static Area createAreaFromBiggerPieAndRectangleUsingInverseSubtractOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createCenteredRectangularArea(image));
+        area.subtract(createBiggerCenteredPieArea(image));
+        return area;
+    }
+
+    /**
+     * Create new area constructed from bigger pie and rectangle using xor
+     * operation.
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @return newly created area
+     */
+    public static Area createAreaFromBiggerPieAndRectangleUsingXorOperator(TestImage image)
+    {
+        Area area = new Area();
+        area.add(createCenteredRectangularArea(image));
+        area.exclusiveOr(createBiggerCenteredPieArea(image));
+        return area;
+    }
+
+    /**
      * Create new area constructed from smaller circle placed inside a rectangle
      * using union operation.
      * 


More information about the distro-pkg-dev mailing list