Reputation: 93565
I'm developing software that writes to a tiny LCD screen (less than 1" x 1").
I've got all the usual suspects - lines, filled polygons, fonts, etc.
I remember, however, learning how to do fun vector manipulation in linear algebra many moons ago, and creating rotating wireframe objects.
I'd like to do that again, but figured there must be a quick and dirty tutorial and/or simple vector library in C that does all the heavy lifting so I can skip the implementation and go right to the eye candy.
Any pointers?
-Adam
Upvotes: 3
Views: 615
Reputation: 3495
I used to use LAPACK++ (http://math.nist.gov/lapack++/), but I see it is now being replaced with TNT (http://math.nist.gov/tnt/)
For simple rotations you might just rather coding a matrix type and implementing matrix multiplication
Upvotes: 2