Aeluned
Aeluned

Reputation: 789

How do I use GLMath in an xcode project?

this link leads me to believe I can leverage GLMath from my xcode project.

Quote:

GLMath. Prior to iOS 5, pretty much every game needed their own math library with common vector and matrix manipulation routines. Now with GLMath, most of the common math routines are there for you!

I've searched a bit but can't find how to link this all up.

Upvotes: 0

Views: 259

Answers (1)

Fonix
Fonix

Reputation: 11597

if you include the GLKit framework in your project (check your project settings under build phases -> link binary with...) you can get it by importing <GLKit/GLKMath.h> but if you import <GLKit/GLKit.h> you will get it anyway

Upvotes: 1

Related Questions