vmath

Quick nav

News

Intro

vmath is set of C++ classes for Vector and Matrix algebra used in computer graphics. The library consits of these classes:

Note that this library is set of C++ class that has all(!) method inlined. (for performance reasons)

Features

Status

Tricks

You can pass vector or matrix class directly as argument appropriate OpenGL function,

Vector2f t;
Vector3f n,v;
Matrix4f transform;

glMultiMatrixf(transform);

glTexCoord2fv(t);
glNormal3fv(n);
glVertex3fv(v);

Todo