码迷,mamicode.com
首页 > 其他好文 > 详细

书中一段代码的注释

时间:2014-12-11 13:47:00      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   ar   color   os   sp   for   

取自《Focus On 3D Terrain Programming》中的一段:
//--------------------------------------------------------------
// Name:              CTERRAIN::FilterHeightBand - private
// Description:       Apply the erosion filter to an individual
//                          band of height values
// Arguments:       -fpBand: the band to be filtered
//                         -iStride: how far to advance per pass
//                         -iCount: Number of passes to make
//                         -fFilter: the filter strength
// Return Value:     None
//--------------------------------------------------------------
void CTERRAIN::FilterHeightBand(float* fpBand, int iStride, int iCount, float fFilter )
{
  float v= fpBand[0];
  int j  = iStride;
  int i;

  //go through(遍历) the height band and apply the erosion filter
  for( i=0; i<iCount-1; i++ )
  {
    fpBand[j]= fFilter*v + ( 1-fFilter )*fpBand[j];
   
    v = fpBand[j];
    j+= iStride;
  }
}
滤波的一段代码,其中iStride就是步长,fFilter就是系数,为此,可以把函数参数名改为以下名称似乎更能说明函数功能:
void FilterHeightBand(float* fpBand,int iStep,int iCount,float fFilterFactor)

书中一段代码的注释

标签:des   style   blog   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/QQ122252656/p/4157367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!