[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11217] trunk/blender/source/blender/imbuf /intern/imageprocess.c: Removed comments with non ascii chars...

Kent Mein mein at cs.umn.edu
Tue Jul 10 21:34:41 CEST 2007


Revision: 11217
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11217
Author:   sirdude
Date:     2007-07-10 21:34:41 +0200 (Tue, 10 Jul 2007)

Log Message:
-----------
Removed comments with non ascii chars...

I left the link that points to documentation on the web so not really needed 
anyway.

Kent

Modified Paths:
--------------
    trunk/blender/source/blender/imbuf/intern/imageprocess.c

Modified: trunk/blender/source/blender/imbuf/intern/imageprocess.c
===================================================================
--- trunk/blender/source/blender/imbuf/intern/imageprocess.c	2007-07-10 19:32:30 UTC (rev 11216)
+++ trunk/blender/source/blender/imbuf/intern/imageprocess.c	2007-07-10 19:34:41 UTC (rev 11217)
@@ -85,17 +85,8 @@
 * http://wiki.blender.org/index.php/User:Damiles#Interpolations_Algorithms
 ***************************************************************************/
 
-/* BICUBIC */
-
-/* Bicubic formula:
-*
-*  A’(px,py) = Σn=-1..2Σm=-1..2 A(i+n,j+m)·P(n-a)·P(b-m)
-*  with: P(k) = 1/6(C(k+2)^3-4C(k+1)^3+6C(k)^3-4C(k-1)^3)
-*  and C(k) = max(0, k)
-*
-*  Where A= in and A'=out
-*
-*  More info: http://wiki.blender.org/index.php/User:Damiles#Bicubic_pixel_interpolation
+/* BICUBIC Interpolation functions */
+/*  More info: http://wiki.blender.org/index.php/User:Damiles#Bicubic_pixel_interpolation
 */
 /* function assumes out to be zero'ed, only does RGBA */
 static float P(float k){





More information about the Bf-blender-cvs mailing list