From: <ai...@us...> - 2010-10-05 01:07:29
|
Revision: 11247 http://plplot.svn.sourceforge.net/plplot/?rev=11247&view=rev Author: airwin Date: 2010-10-05 01:07:23 +0000 (Tue, 05 Oct 2010) Log Message: ----------- Limit pllegend to just Python for now since more work is required to get the Java (and Lua?) bindings to build with pllegend. Modified Paths: -------------- trunk/bindings/swig-support/plplotcapi.i Modified: trunk/bindings/swig-support/plplotcapi.i =================================================================== --- trunk/bindings/swig-support/plplotcapi.i 2010-10-05 00:52:18 UTC (rev 11246) +++ trunk/bindings/swig-support/plplotcapi.i 2010-10-05 01:07:23 UTC (rev 11247) @@ -517,6 +517,7 @@ void pllab(const char *xlabel, const char *ylabel, const char *tlabel); +#ifdef SWIG_PYTHON %feature("autodoc", "Create a discrete annotated legend using boxes, lines, and/or lines of symbols.") pllegend; void pllegend( PLINT opt, PLFLT x, PLFLT y, PLFLT plot_width, PLINT bg_color, @@ -531,6 +532,8 @@ const PLINT *ArrayCk, const PLFLT *ArrayCk, const PLINT *ArrayCk, const PLINT *ArrayCk ); %feature("autodoc", "Set position of the light source.") pllightsource; +#endif + void pllightsource(PLFLT x, PLFLT y, PLFLT z); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |