From: <and...@us...> - 2013-11-28 11:58:01
|
Revision: 12775 http://sourceforge.net/p/plplot/code/12775 Author: andrewross Date: 2013-11-28 11:57:58 +0000 (Thu, 28 Nov 2013) Log Message: ----------- Add plpath to d language bindings. Modified Paths: -------------- trunk/bindings/d/plplot.d Modified: trunk/bindings/d/plplot.d =================================================================== --- trunk/bindings/d/plplot.d 2013-11-28 06:10:49 UTC (rev 12774) +++ trunk/bindings/d/plplot.d 2013-11-28 11:57:58 UTC (rev 12775) @@ -1418,6 +1418,7 @@ //alias c_pllegend pllegend; alias c_pllightsource pllightsource; //alias c_plline plline; +alias c_plpath plpath; //alias c_plline3 plline3; alias c_pllsty pllsty; //alias c_plmap plmap; @@ -1941,6 +1942,9 @@ // Set fill pattern directly. void c_plpat( PLINT nlin, PLINT *inc, PLINT *del ); +// Draw a line connecting two points, accounting for coordinate transforms +void c_plpath( PLINT n, PLFLT x1, PLFLT y1, PLFLT x2, PLFLT y2 ); + // Plots array y against x for n points using ASCII code "code". void c_plpoin( PLINT n, PLFLT *x, PLFLT *y, PLINT code ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |