Restructure workspace locations for samples. Add SamHayne's sample from http://sourceforge.net/projects/assimp/forums/forum/817654/topic/3736373 with some minor changes to suit the new directory layout. Update README. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@759 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
26 lines
537 B
C
26 lines
537 B
C
//-----------------------------------------------------------------------------
|
|
//
|
|
// ImageLib Utility Sources
|
|
// Copyright (C) 2000-2002 by Denton Woods
|
|
// Last modified: 07/09/2002 <--Y2K Compliant! =]
|
|
//
|
|
// Filename: src-ILU/src/ilu_region.h
|
|
//
|
|
// Description: Creates an image region.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef ILU_REGION_H
|
|
#define ILU_REGION_H
|
|
|
|
typedef struct Edge
|
|
{
|
|
ILint yUpper;
|
|
ILfloat xIntersect, dxPerScan;
|
|
struct Edge *next;
|
|
} Edge;
|
|
|
|
|
|
#endif//ILU_REGION_H
|
|
|