From: <hba...@us...> - 2009-11-29 00:45:41
|
Revision: 10641 http://plplot.svn.sourceforge.net/plplot/?rev=10641&view=rev Author: hbabcock Date: 2009-11-29 00:45:30 +0000 (Sun, 29 Nov 2009) Log Message: ----------- Should have committed this simultaneously with my last commit. Expand functionality of plget / plset to include cmap0 and cmap1 color tables, text character sizes, major and minor tick sizes and digit precision (general, x, y, z axises). Modified Paths: -------------- trunk/include/plplot.h Modified: trunk/include/plplot.h =================================================================== --- trunk/include/plplot.h 2009-11-29 00:44:04 UTC (rev 10640) +++ trunk/include/plplot.h 2009-11-29 00:45:30 UTC (rev 10641) @@ -479,16 +479,35 @@ */ enum PLAttributeName // alphabetical? -{ PL_CURCOLOR, - PL_ICOL0, - PL_ICOL1, - PL_NCOL0, - PL_NCOL1, - PL_PENWIDTH }; +{ + PL_CMAP0, + PL_CMAP1, + PL_CURCHARSIZE, + PL_CURCOLOR0, + PL_CURMAJORTICK, + PL_CURMINORTICK, + PL_DEFCHARSIZE, + PL_DEFMAJORTICK, + PL_DEFMINORTICK, + PL_ICOL0, + PL_ICOL1, + PL_NCOL0, + PL_NCOL1, + PL_PENWIDTH, + PL_PRECISION, + PL_SETPRECISION, + PL_XDIGITS, + PL_XDIGMAX, + PL_YDIGITS, + PL_YDIGMAX, + PL_ZDIGITS, + PL_ZDIGMAX +}; enum PLAttributeType { PL_COLOR, + PL_COLORPTR, PL_FLT, PL_FLTPTR, PL_INT, @@ -500,9 +519,11 @@ PLINT attributeType; PLINT intValue; PLINT *intValues; - PLFLT floatValue; - PLFLT *floatValues; + PLFLT fltValue; + PLFLT *fltValues; PLColor colorValue; + PLColor *colorValues; + PLINT nValues; } PLAttribute; /*--------------------------------------------------------------------------*\ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |