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 typedef struct Edge 00017 { 00018 ILint yUpper; 00019 ILfloat xIntersect, dxPerScan; 00020 struct Edge *next; 00021 } Edge; 00022 00023 00024 #endif//ILU_REGION_H 00025