/hg/gfx-test: More helper methods added into the class CommonCAG...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Nov 28 00:57:32 PST 2013
changeset 761954b1d3e1 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=761954b1d3e1
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Nov 28 10:01:21 2013 +0100
More helper methods added into the class CommonCAGOperations.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/framework/CommonCAGOperations.java | 281 ++++++++++++++++++++-
2 files changed, 285 insertions(+), 1 deletions(-)
diffs (336 lines):
diff -r 8f6f8eaf5fbc -r 761954b1d3e1 ChangeLog
--- a/ChangeLog Wed Nov 27 09:32:36 2013 +0100
+++ b/ChangeLog Thu Nov 28 10:01:21 2013 +0100
@@ -1,3 +1,8 @@
+2013-11-28 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/framework/CommonCAGOperations.java:
+ More helper methods added into the class CommonCAGOperations.
+
2013-11-27 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/BitBltBufferedImageOp.java:
diff -r 8f6f8eaf5fbc -r 761954b1d3e1 src/org/gfxtest/framework/CommonCAGOperations.java
--- a/src/org/gfxtest/framework/CommonCAGOperations.java Wed Nov 27 09:32:36 2013 +0100
+++ b/src/org/gfxtest/framework/CommonCAGOperations.java Thu Nov 28 10:01:21 2013 +0100
@@ -294,6 +294,42 @@
}
/**
+ * Create area composed of only one chord. This chord is placed on the
+ * left side of the image.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one chord
+ */
+ private static Area createFirstOverlappingChordArea(TestImage image)
+ {
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ int radius = computeRadiusForOverlappingCircle(xc, yc);
+ // move circle to the left side of image
+ int x1 = xc - 3 * (radius >> 2);
+ return createChordArea(x1, yc, radius);
+ }
+
+ /**
+ * Create area composed of only one chord. This chord is placed on the
+ * right side of the image.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one chord
+ */
+ private static Area createSecondOverlappingChordArea(TestImage image)
+ {
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ int radius = computeRadiusForOverlappingCircle(xc, yc);
+ // move circle to the right side of image
+ int x2 = xc + 3 * (radius >> 2);
+ return createChordArea(x2, yc, radius);
+ }
+
+ /**
* Create area composed of only one circle. This circle is placed on the
* right side of the image.
*
@@ -450,6 +486,25 @@
}
/**
+ * Create area composed of only one chord. This chord is placed on
+ * the center of the image and its radius is smaller than the length
+ * of rectangle side(s).
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one circle
+ */
+ private static Area createSmallerCenteredChordArea(TestImage image)
+ {
+ // compute center of the image
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ // compute size of the circle
+ int size = computeSizeOfCircleOrRectangle(xc, yc);
+ return createChordArea(xc, yc, size);
+ }
+
+ /**
* Create area composed of only one circle. This circle is placed on the
* left side of the image.
*
@@ -683,7 +738,7 @@
{
Area area = new Area();
area.add(createBiggerCenteredCircularArea(image));
- area.add(createCenteredRectangularArea(image));
+ area.intersect(createCenteredRectangularArea(image));
return area;
}
@@ -752,6 +807,70 @@
}
/**
+ * Create new area constructed from bigger chord and rectangle using intersect
+ * operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area
+ */
+ public static Area createAreaFromBiggerChordAndRectangleUsingIntersectOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createBiggerCenteredChordArea(image));
+ area.intersect(createCenteredRectangularArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from bigger chord and rectangle using subtract
+ * operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area
+ */
+ public static Area createAreaFromBiggerChordAndRectangleUsingSubtractOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createBiggerCenteredChordArea(image));
+ area.subtract(createCenteredRectangularArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from bigger chord and rectangle using inverse subtract
+ * operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area
+ */
+ public static Area createAreaFromBiggerChordAndRectangleUsingInverseSubtractOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createCenteredRectangularArea(image));
+ area.subtract(createBiggerCenteredChordArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from bigger chord and rectangle using xor
+ * operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area
+ */
+ public static Area createAreaFromBiggerChordAndRectangleUsingXorOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createCenteredRectangularArea(image));
+ area.exclusiveOr(createBiggerCenteredChordArea(image));
+ return area;
+ }
+
+ /**
* Create new area constructed from bigger pie and rectangle using union
* operation.
*
@@ -848,6 +967,86 @@
}
/**
+ * Create new area constructed from smaller chord placed inside a rectangle
+ * using union operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ public static Area createAreaFromSmallerChordInsideRectangleUsingUnionOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createCenteredRectangularArea(image));
+ area.add(createSmallerCenteredChordArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from smaller chord placed inside a rectangle
+ * using subtract operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ public static Area createAreaFromSmallerChordInsideRectangleUsingSubtractOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createCenteredRectangularArea(image));
+ area.subtract(createSmallerCenteredChordArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from smaller chord placed inside a rectangle
+ * using inverse subtract operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ public static Area createAreaFromSmallerChordInsideRectangleUsingInverseSubtractOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createSmallerCenteredChordArea(image));
+ area.subtract(createCenteredRectangularArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from smaller chord placed inside a rectangle
+ * using intersect operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ public static Area createAreaFromSmallerChordInsideRectangleUsingIntersectOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createSmallerCenteredChordArea(image));
+ area.intersect(createCenteredRectangularArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from smaller chord placed inside a rectangle
+ * using XOR operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ public static Area createAreaFromSmallerChordInsideRectangleUsingXorOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createSmallerCenteredChordArea(image));
+ area.exclusiveOr(createCenteredRectangularArea(image));
+ return area;
+ }
+
+ /**
* Create new area composed from two concentric circles using union operator.
*
* @param image
@@ -1097,4 +1296,84 @@
return area;
}
+ /**
+ * Create new area composed from a chord and a rectangle.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed from a chord and a rectangle
+ */
+ public static Area createAreaFromOverlappingChordAndRectangleUsingUnionOperator(TestImage image) {
+ Area area = new Area();
+ Area circleArea = createFirstOverlappingChordArea(image);
+ Area rectangularArea = createSecondOverlappingRectangularArea(image);
+ area.add(circleArea);
+ area.add(rectangularArea);
+ return area;
+ }
+
+ /**
+ * Create new area composed from a chord and a rectangle.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed from a chord and a rectangle
+ */
+ public static Area createAreaFromOverlappingChordAndRectangleUsingSubtractOperator(TestImage image) {
+ Area area = new Area();
+ Area circleArea = createFirstOverlappingChordArea(image);
+ Area rectangularArea = createSecondOverlappingRectangularArea(image);
+ area.add(circleArea);
+ area.subtract(rectangularArea);
+ return area;
+ }
+
+ /**
+ * Create new area composed from a chord and a rectangle.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed from a chord and a rectangle
+ */
+ public static Area createAreaFromOverlappingChordAndRectangleUsingInverseSubtractOperator(TestImage image) {
+ Area area = new Area();
+ Area circleArea = createFirstOverlappingChordArea(image);
+ Area rectangularArea = createSecondOverlappingRectangularArea(image);
+ area.add(rectangularArea);
+ area.subtract(circleArea);
+ return area;
+ }
+
+ /**
+ * Create new area composed from a chord and a rectangle.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed from a chord and a rectangle
+ */
+ public static Area createAreaFromOverlappingChordAndRectangleUsingIntersectOperator(TestImage image) {
+ Area area = new Area();
+ Area circleArea = createFirstOverlappingChordArea(image);
+ Area rectangularArea = createSecondOverlappingRectangularArea(image);
+ area.add(circleArea);
+ area.intersect(rectangularArea);
+ return area;
+ }
+
+ /**
+ * Create new area composed from a chord and a rectangle.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed from a chord and a rectangle
+ */
+ public static Area createAreaFromOverlappingChordAndRectangleUsingXorOperator(TestImage image) {
+ Area area = new Area();
+ Area circleArea = createFirstOverlappingChordArea(image);
+ Area rectangularArea = createSecondOverlappingRectangularArea(image);
+ area.add(circleArea);
+ area.exclusiveOr(rectangularArea);
+ return area;
+ }
+
}
More information about the distro-pkg-dev
mailing list