No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

26 líneas
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