• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D19-Aug-2013572 3227

Makefile.inH A D03-May-202218.4 KiB622544

READMEH A D19-Aug-2013405 1912

collision.hH A D19-Aug-201351.2 KiB1,521229

collision_space.hH A D19-Aug-20136.5 KiB18338

collision_trimesh.hH A D19-Aug-20138.5 KiB21765

common.hH A D03-Feb-201410.7 KiB388205

compatibility.hH A D19-Aug-20131.9 KiB416

contact.hH A D20-Dec-20134.1 KiB11155

error.hH A D19-Aug-20132.7 KiB6420

export-dif.hH A D19-Aug-20131.8 KiB4111

mass.hH A D19-Aug-20135.3 KiB14583

matrix.hH A D19-Nov-20137.6 KiB19529

memory.hH A D19-Aug-20132.6 KiB6022

misc.hH A D19-Aug-20133.3 KiB8627

objects.hH A D03-Feb-2014105.4 KiB3,373412

ode.hH A D19-Aug-20132.2 KiB5426

odeconfig.hH A D19-Aug-20134.7 KiB152107

odecpp.hH A D19-Aug-201350.7 KiB1,3541,042

odecpp_collision.hH A D19-Aug-201312.8 KiB430304

odeinit.hH A D19-Aug-20139.5 KiB23723

odemath.hH A D01-Feb-201417.1 KiB500315

odemath_legacy.hH A D19-Aug-20135.7 KiB16378

precision.hH A D03-Feb-2014266 1710

precision.h.inH A D19-Aug-2013274 1713

rotation.hH A D19-Aug-20133 KiB7128

threading.hH A D19-Aug-201316.9 KiB40866

threading_impl.hH A D19-Aug-201311.4 KiB26526

timer.hH A D19-Aug-20132.9 KiB7724

README

1
2this is the public C interface to the ODE library.
3
4all these files should be includable from C, i.e. they should not use any
5C++ features. everything should be protected with
6
7	#ifdef __cplusplus
8	extern "C" {
9	#endif
10
11	...
12
13	#ifdef __cplusplus
14	}
15	#endif
16
17the only exceptions are the odecpp.h and odecpp_collisioh.h files, which define a C++ wrapper for
18the C interface. remember to keep this in sync!
19