A 3d fps game made in OpenGL
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Shariq Shah 6a2bb7e3c4 First mac build! Also fixed bug in shader link error logging. 6 years ago
..
Makefile.am First mac build! Also fixed bug in shader link error logging. 6 years ago
README First mac build! Also fixed bug in shader link error logging. 6 years ago
collision.h First mac build! Also fixed bug in shader link error logging. 6 years ago
collision_space.h First mac build! Also fixed bug in shader link error logging. 6 years ago
collision_trimesh.h First mac build! Also fixed bug in shader link error logging. 6 years ago
common.h First mac build! Also fixed bug in shader link error logging. 6 years ago
compatibility.h First mac build! Also fixed bug in shader link error logging. 6 years ago
contact.h First mac build! Also fixed bug in shader link error logging. 6 years ago
cooperative.h First mac build! Also fixed bug in shader link error logging. 6 years ago
error.h First mac build! Also fixed bug in shader link error logging. 6 years ago
export-dif.h First mac build! Also fixed bug in shader link error logging. 6 years ago
mass.h First mac build! Also fixed bug in shader link error logging. 6 years ago
matrix.h First mac build! Also fixed bug in shader link error logging. 6 years ago
matrix_coop.h First mac build! Also fixed bug in shader link error logging. 6 years ago
memory.h First mac build! Also fixed bug in shader link error logging. 6 years ago
misc.h First mac build! Also fixed bug in shader link error logging. 6 years ago
objects.h First mac build! Also fixed bug in shader link error logging. 6 years ago
ode.h First mac build! Also fixed bug in shader link error logging. 6 years ago
odeconfig.h First mac build! Also fixed bug in shader link error logging. 6 years ago
odecpp.h First mac build! Also fixed bug in shader link error logging. 6 years ago
odecpp_collision.h First mac build! Also fixed bug in shader link error logging. 6 years ago
odeinit.h First mac build! Also fixed bug in shader link error logging. 6 years ago
odemath.h First mac build! Also fixed bug in shader link error logging. 6 years ago
odemath_legacy.h First mac build! Also fixed bug in shader link error logging. 6 years ago
precision.h First mac build! Also fixed bug in shader link error logging. 6 years ago
precision.h.in First mac build! Also fixed bug in shader link error logging. 6 years ago
rotation.h First mac build! Also fixed bug in shader link error logging. 6 years ago
threading.h First mac build! Also fixed bug in shader link error logging. 6 years ago
threading_impl.h First mac build! Also fixed bug in shader link error logging. 6 years ago
timer.h First mac build! Also fixed bug in shader link error logging. 6 years ago
version.h First mac build! Also fixed bug in shader link error logging. 6 years ago
version.h.in First mac build! Also fixed bug in shader link error logging. 6 years ago

README


this is the public C interface to the ODE library.

all these files should be includable from C, i.e. they should not use any
C++ features. everything should be protected with

#ifdef __cplusplus
extern "C" {
#endif

...

#ifdef __cplusplus
}
#endif

the only exceptions are the odecpp.h and odecpp_collisioh.h files, which define a C++ wrapper for
the C interface. remember to keep this in sync!