[GRASS-SVN] r44059 - grass/trunk/include

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Oct 28 02:37:16 EDT 2010


Author: mmetz
Date: 2010-10-27 23:37:15 -0700 (Wed, 27 Oct 2010)
New Revision: 44059

Modified:
   grass/trunk/include/rasterdefs.h
Log:
make lanczos and cubic bspline interpolation available

Modified: grass/trunk/include/rasterdefs.h
===================================================================
--- grass/trunk/include/rasterdefs.h	2010-10-28 06:36:13 UTC (rev 44058)
+++ grass/trunk/include/rasterdefs.h	2010-10-28 06:37:15 UTC (rev 44059)
@@ -386,6 +386,12 @@
 		       DCELL, DCELL, DCELL, DCELL, DCELL, DCELL, DCELL, DCELL,
 		       DCELL, DCELL, DCELL, DCELL, DCELL, DCELL, DCELL,
 		       DCELL);
+DCELL Rast_interp_lanczos(double, double, DCELL *);
+DCELL Rast_interp_cubic_bspline(double, DCELL, DCELL, DCELL, DCELL);
+DCELL Rast_interp_bicubic_bspline(double, double,
+		       DCELL, DCELL, DCELL, DCELL, DCELL, DCELL, DCELL, DCELL,
+		       DCELL, DCELL, DCELL, DCELL, DCELL, DCELL, DCELL,
+		       DCELL);
 
 /* mask_info.c */
 char *Rast_mask_info(void);



More information about the grass-commit mailing list