[GRASS-SVN] r44061 - grass/trunk/lib/raster
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Oct 28 03:11:32 EDT 2010
Author: mmetz
Date: 2010-10-28 00:11:32 -0700 (Thu, 28 Oct 2010)
New Revision: 44061
Modified:
grass/trunk/lib/raster/interp.c
Log:
updated function name
Modified: grass/trunk/lib/raster/interp.c
===================================================================
--- grass/trunk/lib/raster/interp.c 2010-10-28 06:42:20 UTC (rev 44060)
+++ grass/trunk/lib/raster/interp.c 2010-10-28 07:11:32 UTC (rev 44061)
@@ -99,10 +99,10 @@
DCELL c20, DCELL c21, DCELL c22, DCELL c23,
DCELL c30, DCELL c31, DCELL c32, DCELL c33)
{
- DCELL c0 = Rast_interp_bspline_cubic(u, c00, c01, c02, c03);
- DCELL c1 = Rast_interp_bspline_cubic(u, c10, c11, c12, c13);
- DCELL c2 = Rast_interp_bspline_cubic(u, c20, c21, c22, c23);
- DCELL c3 = Rast_interp_bspline_cubic(u, c30, c31, c32, c33);
+ DCELL c0 = Rast_interp_cubic_bspline(u, c00, c01, c02, c03);
+ DCELL c1 = Rast_interp_cubic_bspline(u, c10, c11, c12, c13);
+ DCELL c2 = Rast_interp_cubic_bspline(u, c20, c21, c22, c23);
+ DCELL c3 = Rast_interp_cubic_bspline(u, c30, c31, c32, c33);
- return Rast_interp_bspline_cubic(v, c0, c1, c2, c3);
+ return Rast_interp_cubic_bspline(v, c0, c1, c2, c3);
}
More information about the grass-commit
mailing list