Subversion Repositories gelsvn

Rev

Rev 618 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
613 jab 1
GEL
2
GEometry and Linear algebra 
58 jab 3
or
613 jab 4
Graphics Elements Library
58 jab 5
 
613 jab 6
So, GEL is a small library with a good support for 2,3,4 D vectors, simple linear system solving (via Lapack), Mesh representation of surfaces, and the volume representation. There are also several other things some of which pertain to simple user interfaces. For instance, GEL contains a console library.
2 bj 7
 
613 jab 8
DOCUMENTATION
9
---
10
Some installation instructions below. But for more documentation please see the doc directory. There is a doxygen script for creating a reference manual and a latex file intro.tex which explains the basics. Please doxygen or pdflatex your documentation. A license is also found in the intro document.
2 bj 11
 
613 jab 12
Building on XCode/OSX
13
---
2 bj 14
 
613 jab 15
An XCode project has been created and is found in the root directory. The XCode project produces a framework for the GEL library and compiles all the applications.
2 bj 16
 
613 jab 17
CMake
18
---
618 jab 19
 
613 jab 20
On other platforms, you may need to install GLUT and Lapack. Then CMake can be used
617 jab 21
to produce build files. Some of the example programs have hardcoded paths to files in the data directory.
22
For this reason you need to use the GEL directory as your build directory. This may be fixed in later
23
releases.
2 bj 24
 
613 jab 25
Glut is available here:
2 bj 26
 
613 jab 27
http://user.xmission.com/~nate/glut.html
2 bj 28
 
613 jab 29
Direct link:
2 bj 30
 
613 jab 31
http://user.xmission.com/~nate/glut/glut-3.7.6-bin.zip
2 bj 32
 
613 jab 33
Lapack you can find here:
2 bj 34
 
613 jab 35
http://www.netlib.org/clapack/
2 bj 36
 
613 jab 37
Direct link:
2 bj 38
 
613 jab 39
http://www.netlib.org/clapack/CLAw32.zip
2 bj 40
 
613 jab 41
running CMake configuration you will need to set
2 bj 42
 
617 jab 43
INCLUDE_GLUT - set it to the directory containing GL/glut.h You may need to create the GL directory.
44
LIB_LAPACK - set it to the actual file location of clapack.lib
45
LIB_GLUT - set it to the actual file location of glut32.lib
46
 
47
Note: You will also need to put glut32.dll in the path of your executables.