Fixes an oversight that had left plgriddata with an empty body! =8-O
---
 include/plplot.h |    5 +++++
 src/plgridd.c    |    1 +
 2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/include/plplot.h b/include/plplot.h
index 5462437..16f7a99 100644
--- a/include/plplot.h
+++ b/include/plplot.h
@@ -1109,6 +1109,11 @@ c_plgriddata( PLFLT *x, PLFLT *y, PLFLT *z, PLINT npts,
               PLFLT *xg, PLINT nptsx, PLFLT *yg, PLINT nptsy,
               PLFLT **zg, PLINT type, PLFLT data );
 
+PLDLLIMPEXP void
+plfgriddata( PLFLT *x, PLFLT *y, PLFLT *z, PLINT npts,
+             PLFLT *xg, PLINT nptsx, PLFLT *yg, PLINT nptsy,
+             PLF2OPS zops, PLPointer zgp, PLINT type, PLFLT data );
+
 /* type of gridding algorithm for plgriddata() */
 
 #define GRID_CSA       1 /* Bivariate Cubic Spline approximation */
diff --git a/src/plgridd.c b/src/plgridd.c
index 0a3ab74..04c26de 100644
--- a/src/plgridd.c
+++ b/src/plgridd.c
@@ -115,6 +115,7 @@ c_plgriddata( PLFLT *x, PLFLT *y, PLFLT *z, PLINT npts,
               PLFLT *xg, PLINT nptsx, PLFLT *yg, PLINT nptsy,
               PLFLT **zg, PLINT type, PLFLT data )
 {
+    plfgriddata( x, y, z, npts, xg, nptsx, yg, nptsy, plf2ops_c(), (PLPointer) zg, type, data );
 }
 
 void
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel

Reply via email to