fractmod.h
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. /*
  2.  Written by: Paul E. Martz
  3.  
  4.  Copyright 1997 by Paul E. Martz, all right reserved
  5.  Non-commercial use by individuals is permitted.
  6. */
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. #ifdef DEBUG
  11. void dump1DFractArray (float *, int);
  12. void dump2DFractArray (float *, int);
  13. #endif /* DEBUG */
  14. void fill1DFractArray (float *, int, int, float, float);
  15. void fill2DFractArray (float *, int, int, float, float);
  16. float *alloc1DFractArray (int);
  17. float *alloc2DFractArray (int);
  18. void freeFractArray (float *);
  19. void draw1DFractArrayAsLines (float *, int);
  20. void draw2DFractArrayAsLines (float *, int);
  21. void draw2DFractArrayAsTriangles (float *, int);
  22. #ifdef __cplusplus
  23. }
  24. #endif