/hg/gfx-test: Improved JavaDoc in AALines sources.

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Jul 29 07:37:32 PDT 2011


changeset f1aa5b49eb61 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=f1aa5b49eb61
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Jul 29 16:39:12 2011 +0200

	Improved JavaDoc in AALines sources.


diffstat:

 ChangeLog                                   |    3 +
 src/org/gfxtest/testsuites/AALines.java     |  224 +++++++++++++++++++++++++---
 src/org/gfxtest/testsuites/NormalLines.java |    4 +-
 3 files changed, 206 insertions(+), 25 deletions(-)

diffs (390 lines):

diff -r 4b4898a531dc -r f1aa5b49eb61 ChangeLog
--- a/ChangeLog	Fri Jul 29 13:53:28 2011 +0200
+++ b/ChangeLog	Fri Jul 29 16:39:12 2011 +0200
@@ -1,3 +1,6 @@
+2011-07-29  Pavel Tisnovsky  <ptisnovs at redhat.com>
+	* src/org/gfxtest/testsuites/AALines.java: improved JavaDoc.
+
 2011-07-29  Pavel Tisnovsky  <ptisnovs at redhat.com>
 	* Makefile: added new class to compile & run: PathsFromLines.java
 	* src/org/gfxtest/testsuites/PathsFromLines.java: created new test
diff -r 4b4898a531dc -r f1aa5b49eb61 src/org/gfxtest/testsuites/AALines.java
--- a/src/org/gfxtest/testsuites/AALines.java	Fri Jul 29 13:53:28 2011 +0200
+++ b/src/org/gfxtest/testsuites/AALines.java	Fri Jul 29 16:39:12 2011 +0200
@@ -48,6 +48,13 @@
 import org.gfxtest.framework.*;
 import org.gfxtest.framework.annotations.*;
 
+/**
+ * This test check the rendering of antialiased lines.
+ * All sample images and test images are zoomed to show
+ * the pixel-wide differences between both renderers.
+ *
+ * @author Pavel Tisnovsky
+ */
 @TestType(TestTypes.RENDER_TEST)
 @GraphicsPrimitive(GraphicsPrimitives.LINE)
 @RenderStyle(RenderStyles.NORMAL_AA)
@@ -55,19 +62,42 @@
 @Zoom(16)
 public class AALines extends GfxTest
 {
-    private static void drawLine(BufferedImage img, Graphics2D g, int x1, int y1, int x2, int y2, Color color)
+    /**
+     * Draw line onto the image using given color and also highlights both line
+     * end points.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @param x1
+     *            the first point's x coordinate.
+     * @param y1
+     *            the first point's y coordinate.
+     * @param x2
+     *            the second point's x coordinate.
+     * @param y2
+     *            the second point's y coordinate.
+     * @param color
+     *            line color
+     */
+    private static void drawLine(BufferedImage image, Graphics2D graphics2d, int x1, int y1, int x2, int y2, Color color)
     {
-        g.setColor(color);
-        g.drawLine(x1, y1, x2, y2);
-        img.setRGB(x1, y1, 0xff0000);
-        img.setRGB(x2, y2, 0xff0000);
+        graphics2d.setColor(color);
+        graphics2d.drawLine(x1, y1, x2, y2);
+        
+        image.setRGB(x1, y1, 0xff0000);
+        image.setRGB(x2, y2, 0xff0000);
     }
-
+    
     /**
-     * Draws various horizontal lines with endpoints having theirs y-coordinates changed by +- one pixel.
-     *
+     * Draws various horizontal lines with end points having theirs
+     * y-coordinates changed by +- one pixel.
+     * 
      * @param image
-     * @param graphics
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
      */
     private static void drawHorizontalJaggedLines(BufferedImage image, Graphics2D graphics)
     {
@@ -77,12 +107,15 @@
         drawLine(image, graphics,  3, 21, 36, 20, Color.BLUE);
         drawLine(image, graphics,  3, 26, 36, 25, Color.GRAY);
     }
-
+    
     /**
-     * Draws various vertical lines with endpoints having theirs x-coordinates changed by +- one pixel.
-     *
+     * Draws various vertical lines with end points having theirs x-coordinates
+     * changed by +- one pixel.
+     * 
      * @param image
-     * @param graphics
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
      */
     private static void drawVerticalJaggedLines(BufferedImage image, Graphics2D graphics)
     {
@@ -92,11 +125,22 @@
         drawLine(image, graphics, 27, 3, 28, 26, Color.BLUE);
         drawLine(image, graphics, 35, 3, 34, 26, Color.GRAY);
     }
-
+    
+    /**
+     * Draw color wheel, ie. lines with one common end point and other end point
+     * forming circle.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     */
     private static void drawColorWheel(BufferedImage image, Graphics2D graphics)
     {
+        // compute center of the image
         int xc = image.getWidth() >> 1;
         int yc = image.getHeight() >> 1;
+        // draw color wheel
         for (int i = 0; i < ANGLES; i++)
         {
             Color color = new Color(Color.HSBtoRGB((float)i/ANGLES, 1.0f, 1.0f));
@@ -112,11 +156,14 @@
             drawLine(image, graphics, x1, y1, x2, y2, color);
         }
     }
-
+    
     /**
      * Draws special types of lines - very short ones with different angles
+     * 
      * @param image
-     * @param graphics
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
      */
     private static void drawSpecialCases(BufferedImage image, Graphics2D graphics)
     {
@@ -135,70 +182,166 @@
         }
     }
 
+    /**
+     * This method just enables antialiasing.
+     * 
+     * @param graphics2d
+     *            graphics canvas
+     */
     private void setAA1(Graphics2D graphics)
     {
         graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
     }
 
+    /**
+     * This method just enables antialiasing and fractional metrics.
+     * 
+     * @param graphics2d
+     *            graphics canvas
+     */
     private void setAA2(Graphics2D graphics)
     {
         graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
         graphics.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS, RenderingHints.VALUE_FRACTIONALMETRICS_ON);
     }
 
-    public TestResult test0(TestImage image, Graphics2D graphics)
+    /**
+     * Draw vertical "jagged" lines with antialiasing disabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testVertStepNoAA(TestImage image, Graphics2D graphics)
     {
         drawVerticalJaggedLines(image.getImage(), graphics);
         return TestResult.PASSED;
     }
 
-    public TestResult test1(TestImage image, Graphics2D graphics)
+    /**
+     * Draw horizontal "jagged" lines with antialiasing disabled.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testHorsStepNoAA(TestImage image, Graphics2D graphics)
     {
         drawHorizontalJaggedLines(image.getImage(), graphics);
         return TestResult.PASSED;
     }
 
-    public TestResult test2(TestImage image, Graphics2D graphics)
+    /**
+     * Draw vertical "jagged" lines with antialiasing enabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testVertStepAA1(TestImage image, Graphics2D graphics)
     {
         setAA1(graphics);
         drawVerticalJaggedLines(image.getImage(), graphics);
         return TestResult.PASSED;
     }
 
-    public TestResult test3(TestImage image, Graphics2D graphics)
+    /**
+     * Draw horizontal "jagged" lines with antialiasing enabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testHorsStepAA1(TestImage image, Graphics2D graphics)
     {
         setAA1(graphics);
         drawHorizontalJaggedLines(image.getImage(), graphics);
         return TestResult.PASSED;
     }
 
-    public TestResult test4(TestImage image, Graphics2D graphics)
+    /**
+     * Draw vertical "jagged" lines with antialiasing and fractional metrics
+     * enabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testVertStepAA2(TestImage image, Graphics2D graphics)
     {
         setAA2(graphics);
         drawVerticalJaggedLines(image.getImage(), graphics);
         return TestResult.PASSED;
     }
 
-    public TestResult test5(TestImage image, Graphics2D graphics)
+    /**
+     * Draw horizontal "jagged" lines with antialiasing and fractional metrics
+     * enabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
+    public TestResult testHorsStepAA2(TestImage image, Graphics2D graphics)
     {
         setAA2(graphics);
         drawHorizontalJaggedLines(image.getImage(), graphics);
         return TestResult.PASSED;
     }
 
+    /**
+     * Test color wheel (lines with various slope) with antialiasing disabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
     public TestResult testColorWheelNoAA(TestImage image, Graphics2D graphics)
     {
         drawColorWheel(image.getImage(), graphics);
         return TestResult.PASSED;
     }
 
+    /**
+     * Test color wheel (lines with various slope) with antialiasing enabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
     public TestResult testColorWheelAA1(TestImage image, Graphics2D graphics)
     {
         setAA1(graphics);
         drawColorWheel(image.getImage(), graphics);
         return TestResult.PASSED;
     }
-
+    
+    /**
+     * Test color wheel (lines with various slope) with antialiasing and
+     * fractional metrics enabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
     public TestResult testColorWheelAA2(TestImage image, Graphics2D graphics)
     {
         setAA2(graphics);
@@ -206,19 +349,47 @@
         return TestResult.PASSED;
     }
 
+    /**
+     * Test various special cases with antialiasing disabled.
+     *
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
     public TestResult testSpecialCasesNoAA(TestImage image, Graphics2D graphics)
     {
         drawSpecialCases(image.getImage(), graphics);
         return TestResult.PASSED;
     }
 
+    /**
+     * Test various special cases with antialiasing enabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
     public TestResult testSpecialCasesAA1(TestImage image, Graphics2D graphics)
     {
         setAA1(graphics);
         drawSpecialCases(image.getImage(), graphics);
         return TestResult.PASSED;
     }
-
+    
+    /**
+     * Test various special cases with antialiasing and fractional metrics
+     * enabled.
+     * 
+     * @param image
+     *            image to which line is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return
+     */
     public TestResult testSpecialCasesAA2(TestImage image, Graphics2D graphics)
     {
         setAA2(graphics);
@@ -226,6 +397,11 @@
         return TestResult.PASSED;
     }
 
+    /**
+     * Entry point to the test suite.
+     *
+     * @param args not used in this case
+     */
     public static void main(String[] args)
     {
         new AALines().runTestSuite(args);
diff -r 4b4898a531dc -r f1aa5b49eb61 src/org/gfxtest/testsuites/NormalLines.java
--- a/src/org/gfxtest/testsuites/NormalLines.java	Fri Jul 29 13:53:28 2011 +0200
+++ b/src/org/gfxtest/testsuites/NormalLines.java	Fri Jul 29 16:39:12 2011 +0200
@@ -45,8 +45,10 @@
 import org.gfxtest.framework.*;
 import org.gfxtest.framework.annotations.*;
 
+
+
 /**
- * This test renders various lines using identity transformation matrix.
+ * These tests renders various lines using identity transformation matrix.
  * 
  * @author Pavel Tisnovsky
  */



More information about the distro-pkg-dev mailing list