|
From: <hba...@us...> - 2009-04-25 03:09:15
|
Revision: 9850
http://plplot.svn.sourceforge.net/plplot/?rev=9850&view=rev
Author: hbabcock
Date: 2009-04-25 03:09:12 +0000 (Sat, 25 Apr 2009)
Log Message:
-----------
Remove some (commented out) code used during debugging.
Modified Paths:
--------------
trunk/drivers/cairo.c
Modified: trunk/drivers/cairo.c
===================================================================
--- trunk/drivers/cairo.c 2009-04-24 23:54:36 UTC (rev 9849)
+++ trunk/drivers/cairo.c 2009-04-25 03:09:12 UTC (rev 9850)
@@ -506,11 +506,6 @@
/* Move to the string reference point */
cairo_move_to(aStream->cairoContext, aStream->downscale * (double) args->x, aStream->downscale * (double) args->y);
- /* Move to the string reference point */
- /*
- cairo_move_to(aStream->cairoContext, aStream->refx, aStream->refy);
- */
-
/* Invert the coordinate system so that the text is drawn right side up */
cairoTransformMatrix = (cairo_matrix_t *) malloc (sizeof(cairo_matrix_t));
cairo_matrix_init(cairoTransformMatrix, 1.0, 0.0, 0.0, -1.0, 0.0, 0.0);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|