You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
537 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // ImageLib Utility Sources
  4. // Copyright (C) 2000-2002 by Denton Woods
  5. // Last modified: 07/09/2002 <--Y2K Compliant! =]
  6. //
  7. // Filename: src-ILU/src/ilu_region.h
  8. //
  9. // Description: Creates an image region.
  10. //
  11. //-----------------------------------------------------------------------------
  12. #ifndef ILU_REGION_H
  13. #define ILU_REGION_H
  14. typedef struct Edge
  15. {
  16. ILint yUpper;
  17. ILfloat xIntersect, dxPerScan;
  18. struct Edge *next;
  19. } Edge;
  20. #endif//ILU_REGION_H