development of ode at http://q12.org and periodically copy the q12.org ODE sourcecode into this tree to update the Blender ODE. This ODE has not been changed from q12.org and is provided here merely as a convenience to Blender developers.
19 lines
380 B
Plaintext
19 lines
380 B
Plaintext
|
|
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 exception is the odecpp.h file, which defines a C++ wrapper for
|
|
the C interface. remember to keep this in sync!
|