Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Source C++ game engine math libraries?

Tags:

c++

opengl

I'm looking for a free to use game engine math library. Specifically I'd like a good matrix and vector implementation. And everything needed to move objects in 3D space. Does anyone know any good ones? I'm targeting OpenGL. I'd like to write them myself but don't have the time.

like image 746
Polaris878 Avatar asked Oct 15 '09 01:10

Polaris878


3 Answers

I'd recommend OpenGL Mathematics (GLM)

Though if you want physics with your math you could go with Bullet Physics Library

Finally if you want an entire engine i'd go with OGRE

like image 114
Corey Avatar answered Oct 15 '22 13:10

Corey


You might want to consider Blitz++.

like image 38
Michael Aaron Safyan Avatar answered Oct 15 '22 12:10

Michael Aaron Safyan


Besides Ogre 3D, there's also Crystal Space. Here's an article that compares the two.

like image 26
Void Avatar answered Oct 15 '22 12:10

Void