|
From: <ai...@us...> - 2010-11-05 23:38:41
|
Revision: 11306
http://plplot.svn.sourceforge.net/plplot/?rev=11306&view=rev
Author: airwin
Date: 2010-11-05 23:38:35 +0000 (Fri, 05 Nov 2010)
Log Message:
-----------
Implement additional PL_LEGEND bits to support new legend positioning
scheme.
Modified Paths:
--------------
trunk/include/plplot.h
Modified: trunk/include/plplot.h
===================================================================
--- trunk/include/plplot.h 2010-11-04 21:06:57 UTC (rev 11305)
+++ trunk/include/plplot.h 2010-11-05 23:38:35 UTC (rev 11306)
@@ -1206,7 +1206,7 @@
PLDLLIMPEXP void
c_pllab( const char *xlabel, const char *ylabel, const char *tlabel );
-// Routine for drawing line, symbol, cmap0, or cmap1 legends
+// Routine for drawing line, symbol, or cmap0 legends
// Flags for pllegend.
#define PL_LEGEND_NONE 1
@@ -1217,6 +1217,12 @@
#define PL_LEGEND_BACKGROUND 32
#define PL_LEGEND_BOUNDING_BOX 64
#define PL_LEGEND_ROW_MAJOR 128
+#define PL_LEGEND_RIGHT 256
+#define PL_LEGEND_LEFT 512
+#define PL_LEGEND_UPPER 1024
+#define PL_LEGEND_LOWER 2048
+#define PL_LEGEND_INSIDE 4096
+#define PL_LEGEND_OUTSIDE 8192
PLDLLIMPEXP void
c_pllegend( PLINT opt, PLFLT x, PLFLT y, PLFLT plot_width,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|