dispmap.cpp
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // dispmap.cpp
  2. //
  3. // Copyright (C) 2001, Chris Laurel <claurel@shatters.net>
  4. //
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9. #include "dispmap.h"
  10. DisplacementMap::DisplacementMap(int w, int h) :
  11.     width(w), height(h), disp(NULL)
  12. {
  13.     disp = new float[width * height];
  14. }
  15. DisplacementMap::~DisplacementMap()
  16. {
  17.     if (disp != NULL)
  18.         delete[] disp;
  19. }
  20. void DisplacementMap::clear()
  21. {
  22.     int size = width * height;
  23.     for (int i = 0; i < size; i++)
  24.         disp[i] = 0.0f;
  25. }
  26. void DisplacementMap::generate(DisplacementMapFunc func, void* info)
  27. {
  28.     for (int i = 0; i < height; i++)
  29.     {
  30.         for (int j = 0; j < width; j++)
  31.         {
  32.             disp[i * width + j] = func((float) j / (float) width,
  33.                                        (float) i / (float) height, info);
  34.         }
  35.     }
  36. }