Matrices and Vertices in C++

Soldato
Joined
18 Feb 2003
Posts
5,817
Location
Chester
Can anybody tell me how to implement matrices and vertices in c++?

I've been looking all over the net and can't find a simple page stating how to code a matrix :confused:
 
a matrix is usually stored either as a struct or just as a two dimensional array. There are some EXCELENT articles on Dr Dobb's written by John Carmack and Michael Abrash that go nto how to code them in great detail.

Paul
 
Back
Top Bottom