DELAUNAY TEST
=============================
Author: Ruben Penalva
Website: http://www.rpenalva.com
Email: ruben.penalva@rpenalva.com

Requirements
============
- Windows XP (Tested only on Windows XP, but it can be compiled on linux environment)
- Opengl capable graphics card.

About
=====
This file shows you how is structured the test folders, what information you can
get and how to access to this information.

Folder Structure
================
"Delaunay\build\" - binaries compiled with Microsoft Visual Studio 2008 x86
	- "Delaunay"	-	Delaunay library
		- "Debug" - debug compilation
			- "lib" - binaries
			- "include" - headers
		- "Release" - release compilation
			- "lib" - binaries
			- "include" - headers
	- "tests"	-	Tests for delaunay library
		- "2dRender" - Renders random sites delaunay triangulation
			- "Debug" - debug compilation
			- "Release" - release compilation
		- "Simple"	- Tests basic functionalty of delaunay library
			- "Debug" - debug compilation
			- "Release" - release compilation
			
"Delaunay\doc" - doxygen documentation

"Delaunay\libs\" - libraries needed for compile and execute the test
	- "glut" - headers, static libraries and dynamic libraries of glut32
	
"Delaunay\projects\" - Microsoft Visual Studio Projects (both library and tests)
	- "msvc9" - projects for Visual Studio 2008

"Delaunay\src\" - Source 
	- "source" - source code of the library.
	- "tests" - source code of the tests.

Source Code
===========
The test is composed of a delaunay library, which makes the delaunay triangulation
and the tests checking correctness of the library. 

The source code of the library is located in folder "Delaunay\src\source". The source
code of the tests is located in "Delaunay\src\tests", in folder "2dRender" and "simple".

It is written in C++, using Microsoft Visual Studio 2008 as ide to develop.

ThirdParty Libraries
====================
This test uses:
- GLUT for Win32: http://www.xmission.com/~nate/glut.html
- Opengl: http://www.opengl.org/

Documentation
=============
You can find an already compiled doxygen documentation in "docs\api\html\index.html".

Compile
========
You will need Microsoft Visual Studio 2008 in order to compile the solution. The solution file 
"Delaunay\Delaunay.sln" is located in the root path of the test folder. 
Open it and rebuild all. Once it has been compiled the binaries are placed in "Delaunay\build\".
Note that an allready compiled binary is provided in "Delaunay\build\".

Execute
=======
Execute "Delaunay\build\tests\2dRender\Release\2dRender.exe".

Tools / Technology
==================
Tools/tech used to develop this tech demo:
- C++
- Opengl
- GLUT
- Visual Studio 2008
- Subversion
- Redmine
- Windows XP 32bits

