[cairo-commit] cairo-java/src/java/org/freedesktop/cairo Cairo.java, 1.4, 1.5

Jeffrey Morgan commit at pdx.freedesktop.org
Thu Mar 10 06:50:36 PST 2005


Committed by: kuzman

Update of /cvs/cairo/cairo-java/src/java/org/freedesktop/cairo
In directory gabe:/tmp/cvs-serv18545/src/java/org/freedesktop/cairo

Modified Files:
	Cairo.java 
Log Message:
Commented out _svg_arc_to in jni and arcTo methods in java until they are available in cairo.

Index: Cairo.java
===================================================================
RCS file: /cvs/cairo/cairo-java/src/java/org/freedesktop/cairo/Cairo.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Cairo.java	8 Mar 2005 15:35:23 -0000	1.4
+++ Cairo.java	10 Mar 2005 14:50:34 -0000	1.5
@@ -529,12 +529,12 @@
      * @param end_y
      *            y co-ordinate of the end point
      */
-    public void arcTo(double rx, double ry, double xAxisRotation,
+/*    public void arcTo(double rx, double ry, double xAxisRotation,
             int largeArcFlag, int sweepFlag, double end_x, double end_y) {
         cairo_arc_to(getHandle(), rx, ry, xAxisRotation, largeArcFlag,
         		sweepFlag, end_x, end_y);
     }
-
+*/
     /**
      * Draws an elliptic arc from the current point to (end_dx, end_dy) with the
      * given parameters. The co-ordinates of the end point are relative to the
@@ -555,12 +555,12 @@
      * @param end_dy
      *            relative y co-ordinate of the end point
      */
-    public void relArcTo(double rx, double ry, double xAxisRotation,
+ /*   public void relArcTo(double rx, double ry, double xAxisRotation,
             int largeArcFlag, int sweepFlag, double end_dx, double end_dy) {
         cairo_rel_arc_to(getHandle(), rx, ry, xAxisRotation, largeArcFlag,
         		sweepFlag, end_dx, end_dy);
     }
-
+*/
     /**
      * Draws a horizontal line from the current point to the new x co-ordinates.
      * 




More information about the cairo-commit mailing list