00001 //----------------------------------------------------------------------------- 00002 // 00003 // ImageLib Utility Sources 00004 // Copyright (C) 2000-2002 by Denton Woods 00005 // Last modified: 07/09/2002 <--Y2K Compliant! =] 00006 // 00007 // Filename: src-ILU/src/ilu_region.h 00008 // 00009 // Description: Creates an image region. 00010 // 00011 //----------------------------------------------------------------------------- 00012 00013 #ifndef ILU_REGION_H 00014 #define ILU_REGION_H 00015 00016 #include "ilu_internal.h" 00017 00018 00019 typedef struct Edge 00020 { 00021 ILint yUpper; 00022 ILfloat xIntersect, dxPerScan; 00023 struct Edge *next; 00024 } Edge; 00025 00026 00027 #endif//ILU_REGION_H 00028