about. vmmlib.sourceforge.net

vmmlib - a templatized C++ vector and matrix math library

Its basic functionality includes a vector and a matrix class, with additional functionality for the often-used 3d and 4d vectors and 3x3 and 4x4 matrices.

More advanced functionality include solvers, frustum computations and frustum culling classes, and spatial data structures.

It is implemented using C++ templates, making it versatile, and being a header library, it is very easy to integrate into other ( your ) libraries and programs. There is no need to build and install a library, just include the headers and you’re set.

The BSD license allows the usage both in open source and commercial closed source software.

It is easy to use, yet powerful, and was written with OpenGL in mind. This means that the vector and matrix classes can be used in OpenGL calls:

					
vec3f position; // fill
glVertex3fv( position );

mat4f modelview; // fill
glLoadMatrixf( modelview );

					
				

vmmlib was developed and tested on Unix ( including Mac OS X, GNU/Linux and *BSD ) and Windows.

The library is actively developed, used and maintained: vmmlib was developed at the Visualization and Multimedia Lab at the University of Zurich and is being used in research projects and in the industry. It is currently being maintained by Stefan Eilemann and Jonas Bösch.

Other sourceforge projects that use VMMLib:
» Equalizer ( parallel rendering )

Visualization and MultiMedia Lab sourceforge.net