A fault on method call from within Joint class destructor in Python bindings fixed...
[ode.git] / CHANGELOG.txt
blob41cfa9ab4bda7ba64ad57d47f1c4defffa5dfb37
1 ODE CHANGELOG
2 -------------
4 the rules for this file:
5   * entries are sorted newest-first.
6   * summarize sets of changes - dont reproduce every CVS log comment here.
7   * don't ever delete anything.
8   * keep the format consistent (79 char width, M/D/Y date format).
10 ------------------------------------------------------------------------------
11 10/16/2020 Oleh Derevenko
12         * A fault on method call from within Joint class destructor in Python
13           bindings fixed (by Tyler Limkemann)
15 07/28/2020 Oleh Derevenko
16         * A threaded job data race fixed on job release (issue #70). 
17           The bug could cause writes to functions's stack area after 
18           the function returned and World simulation errors not being reported
19           with the function result if the simulation failed.
21 05/11/2020 Oleh Derevenko
22         * GIMPACT math macros were changed to use standard floating point math
23           rather than custom "optimized" implementations.
25 02/19/2020 Oleh Derevenko
26         * libCCD configuration description strings have been added for 
27           use with dGetConfiguration() and dCheckConfiguration().
29 03/06/2019 Oleh Derevenko
30         * dWorldAttachQuickStepDynamicIterationStatisticsSink public function 
31           was added to allow dynamic step count adjustment monitoring for
32           world instances.
34 02/21/2019 Oleh Derevenko
35         * Dynamic step count adjustment was implemented for dWorldQuickStep
36           with dWorldSetQuickStepDynamicIterationParameters and 
37           dWorldGetQuickStepDynamicIterationParameters new API functions
38           to control the feature.
39           The solver estimates per body resulting contact force maximal 
40           absolute adjustment value and may exit after fewer iterations if
41           the adjustments get smaller than the given threshold, or iterate 
42           longer if the adjustments are still significant after the default
43           iteration count is executed.
45 01/20/2019 Oleh Derevenko
46         * x86 targets have been changed to generate SSE2 code for calculations
47           by default with possibility to explicitly configure back for FPU.
49 11/12/2018 Oleh Derevenko
50         * The commentary from 11/05/2018 was wrong. The constraints were not
51           reset to their natural order and remained randomized.
52           The other thing that was missing was full contraint reorder without 
53           separation into independent and dependent ones. The algorithm doesn't
54           converge without it well.
56 11/10/2018 Oleh Derevenko
57         * An incorrect optimization to Jacobian Copy building code from #1938
58           that resulted in corrupt data in multi-threaded execution mode was 
59           fixed.
61 11/05/2018 Oleh Derevenko
62         * An unintended change from commit #1898 has been reverted.
63           The QuickStep used to solve with randomized constraint order 
64           each 8th iteration. The other iterations, the constraints 
65           were reset to their natural order, as generated, with the dependent
66           constraints gathered in reverse order at end (the reverse order is 
67           somehow important). With the commit #1898 the constraints were
68           randomly reordered each 8th iteration but then remained 
69           in that randomized order and only were re-randomized on subsequent
70           multiples of 8.
72 10/09/2017 Markus Rickert
73         * CMake support for project file generation has been added.
75 06/14/2017 Oleh Derevenko
76         * dxHashSpace::collide() has been changed to fault host program 
77           if scene gets too large and causes integer overflow.
79 06/06/2017 Oleh Derevenko
80         * Memory and pointer size integer type use has been changed so that 
81           internal typedefs are used instead of "_t" suffixed types.
83 05/09/2017 Oleh Derevenko
84         * Introduction of cooperative algorithms API. 
85           L*D*LT cooperative factorization and linear equation system 
86           cooperative solving have been implemented.
87         * AtomicReadReorderBarrier, AtomicStore, AtomicStorePointer functions 
88           have been added and some atomic function implementations have been 
89           improved in OU.
91 02/20/2017 Oleh Derevenko
92         * Project generation options have been changed to have built-in
93           multithreaded threading implementation enabled by default.
95 02/19/2017 Oleh Derevenko
96         * dWorldStep threaded implementation has been extended to the final 
97           steps of constraint force applications and body position updates
98           after the LCP solving. Note that body callbacks (if set) may be
99           called from multiple threads if threaded execution is enabled.
100         * OU atomicord32 type has been fixed to be unsigned on all supported
101           platforms.
103 01/09/2017 Oleh Derevenko
104         * dGeomTriMeshDataPreprocess2() public function has been added to 
105           replace dGeomTriMeshDataPreprocess(). Face angles pre-computation
106           for triangle meshes has been implemented.
108 11/13/2016 Oleh Derevenko
109         * dGeomTriMeshDataGetBuff and dGeomTriMeshDataSetBuff have been marked 
110           deprecated and their functionality implemented via 
111           dGeomTriMeshDataGet and dGeomTriMeshDataSet. Extra function variant
112           dGeomTriMeshDataGet2() has been added to allow returning data size.
114 11/07/2016 Oleh Derevenko
115         * The implementation of OPCODE TriMesh data pre-processing 
116           (dGeomTriMeshDataPreprocess()) has been optimized to only contain
117           a sort and a single pass over edges (used to be a sort and O(N^2)).
119 10/29/2016 Oleh Derevenko
120         * dGeomTriMeshDataPreprocess() public function has been changed to 
121           return a boolean status (it can fail in low memory conditions).
123 07/10/2016 Oleh Derevenko
124         * The correct handling of dJOINT_REVERSE mode for AngularMotor Joint 
125           implemented (issue #37).
127 06/29/2016 Oleh Derevenko
128         * A bug fixed with HashSpace calling big boxes collision twice 
129           (both straight and reverse geometries order) since revision #1831.
131 06/03/2016 Oleh Derevenko
132         * dJointSetHinge2Axes public function has been added and 
133           dJointSetHinge2Axis1/2 have been marked deprecated due to being 
134           unsafe.
136 05/13/2016 Oleh Derevenko
137         * ICE Container class allocation strategy fixed to avoid reserving 
138           excess memory with large collections.
140 05/10/2016 Oleh Derevenko
141         * dSafeNormalize3 and dSafeNormalize4 functions changed to leave the
142           parameter intact instead of replacing it with the X-axis unit in case 
143           of fault.
145 04/12/2016 Oleh Derevenko
146         * A function to create a self-threaded threading implementation object
147           has been moved back to public headers as there could be a use for it
148           while running several worlds in parallel threads.
150 01/09/2016 Oleh Derevenko
151         * Hinge2 joint corected to avoid faulting asserts when the axes get 
152           temporarily invalid during assignments (suggested by David Mansolino)
154 01/03/2016 Oleh Derevenko
155         * An invalid memory access fixed in dxSAPSpace::BoxPruning() in case
156           if there were NaN values in AABBs to be sorted.
158 12/25/2015 Oleh Derevenko
159         * Unexpected joint mode assignment (instead of comparison) fixed within
160           an dUASSERT in dJointSetTransmissionAxis2() of transmission joint
162 11/28/2015 Oleh Derevenko
163         * Convex-Trimesh collider added (libccd+GIMPACT only)(by Piotr Piastucki)
164         * dCreateConvex() and dGeomSetConvex() public APIs changed to expect 
165           their parameter arrays as const pointers
167 11/01/2015 Oleh Derevenko
168         * OPCODE mesh colliders' input coordinates have been offset to  
169           mesh-relative frames to decrease potential computational errors
170           (suggested by luckytrashsc2@g***l.com)
172 08/05/2015 Oleh Derevenko
173         * Implemented change to return highest depth contacts subset for GIMPACT 
174           in cases if contacts count exceeds requested maximum (as suggested in 
175           the issue #36 by Piotr Piastucki)
177 11/17/2014 Daniel K. O.
178         * Added support for using libccd from the system (if found via
179           pkg-config)
181 11/10/2014 Oleh Derevenko
182         * Floating point division by zero in capsule-ray collision routine 
183           in case if the ray axis was parallel the cylinder and the ray started
184           from within it fixed (issue #26)
186 11/08/2014 Oleh Derevenko
187         * Threading support has been extended to complete implementation 
188           of QuickStep
190 10/29/2014 Daniel K. O.
191         * Added dJointSetDBallDistance
193 10/19/2014 Oleh Derevenko
194         * Built-in threading implementation compilation fixed for OSX
195           (clock_gettime() is missing from the system - reported by Bram)
197 08/10/2014 Oleh Derevenko
198         * Declarations of dWorld[Get/Set]AutoDisableLinearAverageThreshold and
199           dWorld[Get/Set]AutoDisableAngularAverageThreshold have been removed 
200           from public headers (were orphaned since rev.1052)
202 07/16/2014 Oleh Derevenko
203         * Two fixes by Francesco Cat applied (fixes for mistakes made during
204           code style improvements in the past)
205                  
206 02/27/14 Daniel K. O.
207         * Added dODE_VERSION macro to public headers (issue #24).
209 02/11/14 Daniel K. O.
210         * Added dJointGetHinge2Angle2 (issue #12).
212 02/07/14 Daniel K. O.
213         * Added dWorldSetData/dWorldGetData (issue #21).
215 01/31/14 Daniel K. O.
216         * Applied patch #185: Stable, implicit gyroscopic forces.
218 01/27/14 Daniel K. O.
219         * Fixed cylinder AABB computation.
221 01/25/14 Daniel K. O.
222         * Removed ALLOCA calls from dHashSpace; it should not depend
223           on stack size limits anymore.
225 12/06/13 Daniel K. O.
226         * Applied patch #181: fix some bugs in AMotor joint.
227         * Applied patch #186: fix some bugs in PU joint.
228         * Applied patch #182: Transmission joint.
229         * Applied patch #184: implement rolling friction for contacts.
231 08/08/13 Oleh Derevenko
232         * Joint feedback forces application fixed in QuickStep implementation
233           (was broken since revision #1919 in old repository (#1927 in new one))
235 08/04/13 Oleh Derevenko
236         * Bugfix #89 by Luc applied (dJointAddSliderForce() adds a zero force
237           when the parent body is NULL) 
239 05/18/13 Oleh Derevenko
240         * OU library has been included in ODE at revision #46 instead of  
241           being used as an external link due to difficulties using external 
242           references with new protocol used for storage at SF.
244 03/03/13 Oleh Derevenko
245         * Fixed issue with "findex==-1" constraints being intermixed with 
246           "findex!=-1" ones during constraints random reordering in QuickStep.
248 02/03/13 Oleh Derevenko
249         * [u]int[8/16/32] renamed to contain "d" prefix so that global namespace
250           was not polluted with these names unconditionally. 
251           If your project depended on these types other than just for passing 
252           parameters to ODE calls, add similar typedefs for yourself in some 
253           of your project's global headers.
255 01/02/13 Oleh Derevenko
256         * Applied patch #183 by Joseph Cooper (complementary matrix 
257           calculation fix).
259 12/28/12 Oleh Derevenko
260         * A bug with heightfield data assigned to a wrong field in 
261           dGeomHeightfieldSetHeightfieldData fixed (bug report #88 by Luc).
263 12/18/12 Oleh Derevenko
264         * Fixed issue with some kinds of joints (Ball, DBall, DHinge, Fixed)
265           might overwrite world ERP value with their custom ERP during 
266           getInfo2() call and that inappropriate value would then be passed 
267           to subsequent joints in solver instead of world ERP.
269 12/01/12 Oleh Derevenko
270         * Fixed issues reported in patches #151 and #22 (collisions with
271           SAPSpace and QuadTreeSpace might not work because geometries list
272           was misused in them).
273         * Applied patch #160 "IsPointInPolygon in convex.cpp returns wrong 
274           results" (by Janis Rucis)
276 11/25/12 Oleh Derevenko
277         * Configuration option --disable-threading-intf added 
278           (--no-threading-intf for Windows/Premake). This allows disabling
279           threading interface support (external implementations may not be 
280           assigned) but eliminates dependency on OU and use of atomics in 
281           steppers.
283 11/05/12 Oleh Derevenko
284         * Fixed zero comparisons in OPCODE to use relative error instead of
285           absolute epsilon value (found by Bill Sellers)
287 06/08/12 Daniel K. O.
288         * Removed the need for defining dSINGLE/dDOUBLE; this is stored now in
289           the generated ode/precision.h header.
290         * Some code cleanup to get rid of GCC warnings.
292 05/30/12 Daniel K. O.
293         * Made drawstuff draw shadows for lines.
294         * Fixed dhinge's last constraint to properly handle rotations.
296 05/03/12 Daniel K. O.
297         * Added two new joints: Double Ball and Double Hinge.
299 04/22/12 Daniel K. O.
300         * Fixed plane2d joint: uninitialized variables (reported by Dimitris
301           Papavasiliou)
303 04/14/12 Oleh Derevenko
304         * Assertion checking macros moved into library private headers.
306 04/13/12 Daniel K. O.
307         * Applied patch from bug  #3431829 - better handling of capsule-box with
308           deep penetrations.
309         * Fixed zero-mu issues: now either mu or mu2 can be set to zero.
311 03/17/12 Oleh Derevenko
312         * Threaded execution support interface added. Optional built-in threading
313           implementation added.
314           Internal threading implementation is excluded by default and to be used, 
315           it must be enabled with configure/premake.
316           At present, if threading interface is assigned to a world, island 
317           selection and stepping is performed in multiple threads (one thread per 
318           island).
320 03/12/12 Oleh Derevenko
321         * PURE_INLINE macro renamed to ODE_PURE_INLINE and definition of 
322           dNextAfter()/dCopySign() corrected to avoid creating conflicts with 
323           other libraries.
325 02/03/12 Oleh Derevenko
326         * Assertion checking macros moved from common.h to error.h
328 12/18/11 Oleh Derevenko
329         * dIVERIFY macro added (same as dIASSERT in debug mode but evaluates its
330           expression in release mode) to be used to assert variable value 
331           which is not used further in text while avoiding compiler warning.
332         * dICHECK macro added (same as dIASSERT but evaluates its expression and 
333           raises assertion fault regardless of compilation mode) to be used to
334           generate a fault in cases when error is very unlikely but must be 
335           handled and handling is very troublesome (e.g. failure to lock a mutex
336           due to lack of resources).
338 12/07/11 Oleh Derevenko
339         * Partially fixed size_t to integer conversion warnings
340         * Fixed type signedness and added casts to size_t wherever necessary 
341           in Step/QuickStep
343 11/04/11 Daniel K. O.
344         * Applied patch #3429454 - fix compilation on some platforms.
346 10/28/11 Daniel K. O.
347         * Fixed a box-capsule bug: more reasonable normal for deep penetrations
348           (contributed by Georg Martius.)
350 10/27/11 Daniel K. O.
351         * Disabled merging of contacts for trimesh-sphere by default.
352         * Added new demo: demo_tracks.
354 10/17/11 Daniel K. O.
355         * Added python bindings, contributed by Gideon Klompje.
356         * Updated some build scripts.
357         * Changed spheres distribution in demo_space_stress.
359 05/17/11 Oleh Derevenko
360         * A typo in step.cpp fixed (assignment operator in a conditional 
361           instead of comparison) (reported by Bram Stolk)
363 01/29/11 Oleh Derevenko
364         * Heightfield zone boundaries calculation code fixed to also consider
365           whole next cell after the AABB if the AABB ends exactly at the cell
366           boundary.
368 01/23/11 Daniel K. O.
369         * Applied patch from Daniel Fiser, add libccd collider for
370           box-cylinder.
372 01/20/11 Daniel K. O.
373         * Applied patch from Daniel Fiser, fix infinite loop in libccd caused
374           by numerical problems.
376 01/06/11 Daniel K. O.
377         * Applied patch from Daniel Fiser, efficient libccd tests when using
378           CONTACTS_UNIMPORTANT.
380 12/17/10 Daniel K. O.
381         * Applied patches from Daniel Fiser for new colliders based on libccd.
383 11/08/10 Daniel K. O.
384         * Applied patches from Daniel Fiser to incorporate libccd for
385           Cylinder-Cylinder collision tests.
387 08/21/10 Oleh Derevenko
388         * Fix applied to dxReallocateTemporayWorldProcessContext() to remove typo 
389           which caused segmentation fault (by Kyle McKay).
390           dTestSolveLCP() fixed to avoid exceeding allocated memory pool 
391           (by Kyle McKay).
393 07/19/10 Oleh Derevenko
394         * Patch applied (#3030783) to fix drawstuff dimensions being ignored
395           in OSX GLUT port (by Danny Price).
397          Daniel K. O.
398         * Applied patch #2991622: dGeomGetRelPointPos, dGeomGetPosRelPoint,
399           dGeomVectorToWorld, and dGeomVectorFromWorld.
401 07/16/10 Daniel K. O.
402         * Fixed bug #2937076: don't try to build demos if drawstuff is disabled.
404 05/02/10 Oleh Derevenko
405         * Missing extern "C" wrapper has been added to include/ode/export-dif.h
406           (reported by Danny Price). The change affects dWorldExportDIF() public 
407           function.
409 05/02/10 Oleh Derevenko
410         * Patch applied (#2995450) to generate up to four contacts for box-
411           plane collision test (by alexdu) and fix contact depths.
413 05/02/10 Oleh Derevenko
414         * dGeomLowLevelControl function added with ability to change/query OPCODE 
415           trimesh-sphere contact merging behavior at runtime.
417 02/18/10 Daniel K. O.
418         * Fixed bug affecting disabled joints and dWorldStep.
420 01/16/10 Oleh Derevenko
421         * Patch applied (#2931174) to make demos work for recent MacOS.
422         * Patch applied (#2931177) to fix the demos' framerate on X11.
424 12/20/09 Oleh Derevenko
425         * QuadTreeSpace implementation corrected to avoid object-block relation 
426           ambiguity due to numeric errors.
428 12/04/09 Oleh Derevenko
429         * odecpp classes changed to be inheritable and easily expandable
431 11/29/09 Oleh Derevenko
432         * Improvement for trimesh-plane collision (also used in trimesh-heightfield)
433           to exclude mesh vertices that have already generated contacts from further
434           examination and contact generation in other triangles (suggested by LR).
436 10/25/09 Oleh Derevenko
437         * Macros changed to static inline functions in odemath.h and related files.
438           Some code duplication has been eliminated across the files.
440         * Fixed handling of --disable-asserts and --enable-double-precision 
441           (absence of --enable-double-precision) in configure script. The script
442           was not appending compiler defines correctly.
444         * dWorldStep implementation changed to remove allocation on stack. 
445           dUSE_MALLOC_FOR_ALLOCA define has been removed as well as corresponding
446           configuration parameter. Also dMemoryFlag public variable has been removed.
447           (look for presence of ODE_EXT_malloc_not_alloca configuration string if
448           your application is dependent on that variable).
450 09/05/09 Oleh Derevenko
451         * dWorldStepFast1 API removed along with dWorld[Get/Set]AutoEnableDepthSF1
453 08/29/09 Oleh Derevenko
454         * Fixed uninitialized floating point array used in computations.
456 08/12/09 Oleh Derevenko
457         * A typo fixed in dGeomCopyOffsetRotation() (final_posr was used instead 
458           of offset_posr). Reported by Tilmann.
460 08/11/09 Daniel K. O.
461         * Made sure neither dSINGLE or dDOUBLE is defined by default; the user
462           should always explicitly specify the precision.
464 06/27/09 Oleh Derevenko
465         * New functions have been added:
466            - dWorldUseSharedWorkingMemory
467            - dWorldCleanupWorkingMemory
468            - dWorldSetStepMemoryReservationPolicy
469            - dWorldSetStepMemoryManager
470                 
471 06/25/09 Remi Ricard (papaDoc)
472         * Add limit to the to the second axis of the universal joint
473          for the pu joint.
475 06/14/09 Oleh Derevenko
476                 * dWorldQuickStep re-implemented to avoid memory allocation on stack.
477                   Also several optimizations have been made to decrease memory 
478                   requirements and optimize algorithm implementation of dWorldQuickStep.
479                   dWorldStep still remains with old memory allocation however new APIs
480                   mentioned below are fully functional for it.
481                   Both dWorldStep and dWorldQuickStep have been changed to return boolean
482                   success status.
484                 * dInitODE2() changed to automatically call 
485                   AllocateODEDataForThread(dAllocateFlagBasicData) after library 
486                   initialization as this is a required initialization minimum that
487                   must always be performed anyway.
489 06/05/09 Daniel K. O.
490          * Removed aliasing issues from OPCODE/Ice, plus some other warnings.
491            Now it builds on gcc 4.3.2 with '-Wall -Werror -O3".
493 05/30/09 Oleh Derevenko
494          * A minor memory usage optimization for QuickStep.
496 05/24/09 Daniel K. O.
497          * Made the new trimesh collider the default.
498          * Added a "-texturepath" option to drawstuff.
500 05/18/09 Oleh Derevenko
501         * Heightfield rotation fixed to avoid NaNs while rotating infinite
502           MIN/MAX heights.
504 05/03/09 Oleh Derevenko
505         * Incorrect parameter order fixed on contact merging in Sphere-Trimesh
506           collisions. The bug resulted in merged contact remaining with normal
507           of first contact found. Thanks to Dimitris Papavasiliou for reporting.
509 04/23/09 Daniel K. O.
510         * Fixed bug #2685170: use the C99 __func__ instead of __FUNCTION__ when
511           a C99 implementation is available.
513 04/07/09 Remi Ricard (papaDoc)
514         * Remove unused code in demo_joints.cpp, reported by Tilmann.
516 04/07/09 Remi Ricard (papaDoc)
517         * Fix bug in collision categories in demo_jointPU, reported by Tilmann
519 03/14/09 Oleh Derevenko
520         * A possibility to initialize/close ODE multiple times recursively has 
521           been added.
522           Also, now a call to dSpaceSetManualCleanup() is required for each 
523           space right after creation if ODE has been initialized in thread data
524           manual cleanup mode.
525            
526 03/07/09 Oleh Derevenko
527         * Thread local data has been cleaned up from OPCODE and OdeTls as it is
528           not used (OPC_SweepAndPrune.* and OPC_BoxPruning.* have been removed
529           - rebuilding project files is necessary).
531 02/07/09 Daniel K. O.
532         * New house of cards demo, which stresses the friction handling stability.
534 01/29/09 Remi Ricard (papaDoc)
535         * Fix bug: Fix problem when attaching no body to a joint. Before calling
536           setRelativeValues a check is made for bodies.
537         * Add unittest
539 01/28/09 Daniel K. O.
540         * Applied patch #2538046: Heightfield AABB bounds patch.
542 01/23/09 Remi Ricard (papaDoc)
543          * Add new function dJointSetUniversalAxis1Offset and dJointSetUniversalAxis2Offset
544          * Add unittest for those funcitons.
546 01/23/09 Remi Ricard (papaDoc)
547          * Fix problem with dJointGetUniversalAngle2 when the joint is attached to
548            only a body 2. The sign was inverted.
549          * Add unit test to verify for this problem
551 01/21/09 Remi Ricard (papaDoc)
552          * Fix bug reported by Tilman: dxJointPU::getInfo1 was setting twice the
553            limit of limot1 to zero and not limot2
555 01/17/09 Daniel K. O.
556         * Fixed a bug in dSpaceCollide2: if both geoms are not in spaces they would
557           not have valid AABBs.
559 12/20/08 Daniel K. O.
560         * New functions: dJointEnable, dJointDisable, dJointIsEnabled
561           (patch #2454764).
563 12/19/08 Daniel K. O.
564         * Removed inline asm statements that break builds on 64-bit VC++.
566 12/09/08 Daniel K. O.
567         * Applied patch #2381592, which adds support for Kinematic Bodies.
569 12/06/08 Oleh Derevenko
571        * Applied a patch by Martijn Buijs to make GIMPACT trimesh-ray collisions to
572          be consistent with those in OPCODE.
573        * Swapped geometries returned in contacts for OPCODE Trimesh-Plane collisions
574          as they were returned in unnatural order being different from that in GIMPACT
575        * Applied a patch by Martijn Buijs to make side1, side2 fields of contact 
576          structure be always initialized, either with -1 for non-trmesh geometries
577          or with triangle index for trimeshes. These fields were only assigned for
578          trimesh-trimesh collisions before.
579        * dGeomTriMeshSetTriMergeCallback/dGeomTriMeshGetTriMergeCallback API added
580          to set/get user defined callback procedure for trimeshes that would be 
581          invoked when contacts are merged to let user code accumulate attributes of
582          original contact triangles and generate a fake index by which it would 
583          later be able to determine those attributes. If the callback is not 
584          assigned (the default) -1 is generated as triangle index for merged 
585          contacts (there was an index of first of merged triangles before!!!).
586          The callback is currently used within OPCODE trimesh-sphere and OPCODE
587          new trimesh-trimesh collisions.
589 11/20/08 Remi Ricard (papaDoc)
590        * Fix problem with dJointGetPUPosition and
591          dJointGetPUPositionRate when the joint is attached to only
592          a body 2. The sign was inverted.
593        * Fix bug: When a pu joint had only one body attached to position 2,
594          dJointAttach(jId, 0, bId). The body was not push in the right direction to
595          move back between the limits.
596        * Add unit test to check the above problem
597        * Add the function void dJointSetPUAnchorOffset
598        * Make the function void dJointSetPUAnchorDelta deprecated
600 11/19/08 Remi Ricard (papaDoc)
601        * Fix bug: When a pr joint had only one body attached to position 2,
602          dJointAttach(jId, 0, bId). The body was not push in the right direction to
603          move back between the limits.
604        * Add unit test to check the above problem
606 11/19/08 Remi Ricard (papaDoc)
607         * Fix problem with dJointGetPRPosition and
608           dJointGetPRPositionRate when the joint is attached to only
609           a body 2. The sign was inverted.
610         * Add unit test to check the above problem
611         * Increase the tolerance to remove failure in unit test
612         * Remove compilation warning in unit test with the use of REAL()
614 11/18/08 Remi Ricard (papaDoc)
615        * Fix bug: When a piston joint had only one body attached to position 2,
616          dJointAttach(jId, 0, bId). The body was not push in the right direction to
617          move back between the limits.
618        * Add more functionality to demo_piston.cpp
619        * Run astyle on modified files.
621 11/18/08 Remi Ricard (papaDoc)
622         * Fix bug: When a slider joint had only one body attached to position 2,
623          dJointAttach(jId, 0, bId). The body was not push in the right direction to
624          move back between the limits.
626 10/29/08 Oleh Derevenko
628         * Premake scripts changed to only include chosen collision library
629           sources in project on Windows. --all-collis-libs premake option 
630           added to allow inclusion of all collision library sources into the 
631           project
633 10/15/08 Remi Ricard (papaDoc)
634         * Applying patch #2158425 64-bit GIMPACT provided by Mark
635           William. This patch enable GIMPACT to works on 64-bit machine.
637 10/15/08 Remi Ricard (papaDoc)
638         * Add function dJointGetPRAngle and dJointGetPRAngleRate
640 10/15/08 Remi Ricard (papaDoc)
641         * Enable the motor on the rotoide part of the PR joint
643 10/15/08 Remi Ricard (papaDoc)
644         * Add unit test to check if using directly a joint
645           or using after setting with default values is the same.
646         * Add function setRelativeValues called in dJointAttach for
647           all joints.
649 10/10/08 Remi Ricard (papaDoc)
650         * Fix bug in dJointGetPUAxis2. The axis was not multiplied with the
651           the rotation matrix of the good body.
652         * Fix bug if there is only one body on the PU joint the axis returned
653           was not the right one.
654         * Add unit test to verify previous bug.
656 10/03/08 Rodrigo Hernandez (Kwizatz)
657         * Added Blender script to create ODE convex geoms under tools.
659 10/01/08 Rodrigo Hernandez (Kwizatz)
660         * Convex-Convex collision detection code is finally stable.
662 08/31/08 Daniel K. O.
663         * Applied patch 2080674: Improved dBodySetRotation; now exact rotation
664           matrices are preserved until the next simulation step.
666 08/07/08 Daniel K. O.
667         * Fixed strict aliasing issue that was breaking the new trimesh collider.
669 07/24/08 Daniel K. O.
670         * New functions: dBodyGetGyroscopicMode and dBodySetGyroscopicMode
671           (patch #2019242).
673 07/15/08  Remi Ricard (papaDoc)
674         * Add a new define ODE_API_DEPRECATED to mark function as deprecated
675           when necessary.
677 07/14/08 Remi Ricard (papaDoc)
678         * Finish adding patch 1336066: Joint feedback in quickstep by jsinecky
679         * demo_boxstack.cpp can now print joint feedback
681 07/11/08 Daniel K. O.
682         * Bumped version for 0.10.1
683         * Added proper usage of libtool's version info.
685 07/10/08 Remi Ricard (papaDoc)
686         * Add new function dJointSetPistonAnchorOffset
687         * Add unittest for the piston joint
688         * Fix problem with dJointGetPistonPosition and 
689           dJointGetPistonPositionRate when the joint is attached to only
690           a body 2. The sign was inverted.
692 07/09/08 Remi Ricard (papaDoc)
693         * Optimize function Multiply1_12q1 in quickstep
694           Patch proposed by Riemer v.d. Zee and modified by Patrick Baggett
696 07/08/08 Remi Ricard (papaDoc)
697         * Update the slider joint to have the same behavior as the other joint
698           when there is only a body2 attached to it.
699         * Update documentation for the slider joint.
700         * Remove warning by using REAL()
701         * Add new unittest for dJointGetSliderPositionRate
703 07/08/08 Remi Ricard (papaDoc)
704         * Update unittest for the slider.
705         * Rename the new function dJointSetHingeAxisDelta to 
706           dJointSetHingeAxisOffset. This remove will remove confusion with 
707           the old function dJointSetHingeAnchorDelta
708         * Update documentation for the Hinge unittest
709         * Remove warning by using REAL()
711 07/07/08 Daniel K. O.
712         * Max Correcting Vel doesn't affect bounciness, as before.
714 07/03/08 Remi Ricard (papaDoc)
715         * Add new function dJointSetHingeAxisDelta
716         * Add unittest for this new function
718 06/17/08 Remi Ricard (papaDoc)
720         *  Move the computation of the Relative Rotation for the slider joint
721            into a function.
722         * Add unittest for to check qrel 
724 06/17/08 Remi Ricard (papaDoc)
726        * Remove unused variables. 
727        * Remove a conversion warning between unsigned int and int
728         
729 06/17/08 Remi Ricard (papaDoc)
731         * Move the function hingeComputeRelativeRotation as a member of 
732           the hinge structure/class.
734 06/17/08 Remi Ricard (papaDoc)
736         *  Move the computation of the Relative Rotation for the fixed joint
737            into a function.
739 06/16/08 Remi Ricard (papaDoc)
741         * Add testunit for the dxJointFixed
743 06/04/08 Daniel K. O.
745         * Moved joints to ode/src/joints, converted them to true virtual
746           methods.
748 06/02/08 Daniel K. O.
750         * Added an Auto<T> template to step.cpp to handle memory deallocation.
752 05/09/08 Daniel K. O.
754         * Applied patch #1335202: Contact Joint Motion (with some corrections),
755           and added demo_motion.
757 05/01/08 Oleh Derevenko
759         * Memory leak in GIMPACT fixed (reported by Derek)
761 04/28/08 Oleh Derevenko
763         * Added possibility to collide a space of lower sublevel as a geometry
764           against another space of a higher level with dSpaceCollide2.
765           dSpaceSetSublevel/dSpaceGetSublevel are used for sublevel assignment/
766           retrieval.
768 04/27/08 Oleh Derevenko
770         * Fixed incorrect memory copying which could lead to memory corruption
771           in GIMPACT (luckily, in unused code)
772         * Fixed possible memory read beyond the end of allocated buffer along
773           with unnecessary extra memory copying in GIMPACT.
774         * Fixed buffer reserve being incorrectly reset to zero for bitsets 
775           what resulted in unnecessary memory reallocations in GIMPACT.
776         * Implemented support for ability to run collision detection from
777           multiple threads for separate spaces.
778            
779 04/14/08 Oleh Derevenko
781         * Fixed possible memory corruption in new trimesh-trimesh collider
782           in case if two degenerated triangles are checked against each other.
784 04/12/08 Oleh Derevenko
786         * Fixed sporadic assertion failure on vector normalization caused
787           by small triangles degenerating into segments during space 
788           transformations.
790 03/28/08 Remi
792         * Fix a bug in dJointXXXGetInfo. The value in limot.limit was not
793           always updated. (Ex: If hi and lo limit were changed). 
795 03/27/08 Remi
797         * Added a new Joint: Prismatic Universal (patch #1828454).
799          Daniel K. O.
801         * Fixed bug #1841309: collide2() method buggy.
803 03/18/08 Rodrigo
805         * New function: dVector4Copy.
807 03/14/08 david
809         * Added stub calls for trimesh functions.
810         * Applied patch #1914232: dGetConfiguration.
811         * Applied patch #1655333: Optimize the function dNormalize3.
812         * New function: dSetColliderOverride.
813         * New function: dCheckConfiguration.
814         
815          Daniel K. O.
817         * Disabled building shared library by default with autotools.
819 03/13/08 david
821         * New function: dJointGetNumBodies (patch #1901550).
822         * New function: dSpaceGetClass (patch #1901637).
823         * Applied patch #1901649: Add missing function in the export
825 03/12/08 Rodrigo
827         * Fixed drawstuff build issues on OSX.
829 01/12/08 Daniel K. O.
831         * Fixed a typedef bug in configure.in.
832         * Added dCylinder to the C++ wrappers.
833         * Applied patch 1851394: support for GIMPACT with double precision,
834           dCollide fix.
835         * Moved bunny geometry to bunny_geom.h.
837 12/11/07 Daniel K. O.
839         * Added damping and MaxAngularVel() functions.
840         * Const-correctness: added const qualifier to some dWorldGet and dBodyGet
841           functions.
842         * Updated the odecpp.h header.
844 12/07/07 Daniel K. O.
846         * Removed most of the compiler warnings from Drawstuff, ODE and
847           OPCODE
848         * Upgraded automake requirement to 1.10, and change some Makefile.am
850 12/06/07 Rodrigo
852         * Modified autotools to use libtool for
853           library generation and administration
854         * Removed release and debug flags for configure.in
855           CPPFLAGS, CFLAGS, CXXFLAGS should be set by the
856           user to their liking, respecting autotools policies.
858 11/30/07 Daniel K. O.
859         * Applied patch 1813079 (moved callback)
860         * Replaced moveAndRotateBody by dxStepBody in stepfast.cpp
862 11/10/07 david
864         * Added 'Sweep and Prune' collision space.
865         * New Piston joint type with demo, by Remi Ricard
866         * Added build option to use 16-bit indices for OPCODE trimesh
868 11/03/06 david
870         * Integrated Christoph Beyer's average based sampling system for body
871           disabling.
873 10/26/06 Francisco Leon
875         * Totally refactored trimesh collision system.
876           Using GIMPACT instead of OPCODE. Now works correctly, and faster.
877           Visit http://gimpact.sourceforge.net.
878           
879         * Finally, test_moving_trimesh.exe works nicely.   
880           
881         * Fixed autodisable system. Now is possible to set bigger sleeping 
882           threshold values and objects won't be sleeping on the air. They will
883           rest on the floor properly.
884                   
885         * dInitODE function added.
886         
887         * Is Obligatory to call dInitODE() at the beginning for initialize ODE,
888           and calling dCloseODE() when the program ends.
890 09/20/06 bram
892         * Fixed two bugs in cyl/plane collision test.
894 09/13/06 Remi
896         * New Rotoide - Prismatic joint type
897         * dJointGetUniversalAngles for efficient angle retrieval.
899 08/09/06 david
901         * Integrated plane2d joint type which constrains bodies to z == 0.
903 07/06/06 david
905         * Added heightfield primitive collision code. Simple test available in
906           ode/test/test_heightfield
908 04/03/06 rodrigo
910         * Added Convex primitive collision code,
911           currently only convex-sphere and convex-plane work
913 04/01/06 bram
915         * Added program to test trimesh vs sphere: ode/test/test_basket
917 03/20/06 jason379
919         * Added new autogenerated Visual Studio projects, with Premake scripts
921 03/17/06 bram
923         * Added plane/cyl intersection test
924         * Renamed CCylinder to Capsule
925         
926 02/04/06 gcarlton
928         * Added support for geom offsets.
930 10/26/05 rodrigo
932         * Removed LIBTOOL from autotools since it was not really required.
933         * Added a target to build ODE as a shared library, this shared
934           library gets build alongside the static one, no flags required.
936 10/24/05 tfautre
938         (Backported patches from STABLE branch, applied by Adam)
939         
940         * dRandInt changed for a non-double all-int version.
941         * mics minor fixes and improvements.
943 04/05/05 tfautre
945         * Fixed segmentation fault with OPCODE on 64 bits systems.
947 03/31/05 tfautre
949         * Fixed timer.cpp compiler error on x86-64 using GCC.
951 03/29/05 colin
953         * Added trimesh preprocessing to mark unneeded edges and verts.  Also
954           added support for preprocessed info to the ccylinder-trimesh
955           collider.
957 12/07/04 adam
959         * Important AMotors bugfix
961 09/22/04 jeff
963         * Assorted small bugfixes and tweaks for
964           trimesh_{box,ccylinder,trimesh} collisions
966 09/21/04 jeff
968         * added functions to joint.cpp to allow joint attachment to moving
969           geoms.
971         * added malloc-based memory allocation in step.cpp & lcp.cpp (turned
972           on with a #define switch in common.h)
973         
974 05/29/04 russ
976         * added joint feedback to the QuickStep solver
978 05/18/04 russ
980         * added warm starting to the QuickStep solver
982 05/18/04 russ
984         * added the QuickStep solver
985         
986         * added contact parameter functions.
988 05/05/04 adam
990         * use dRandInt instead of rand() in stepfast.
992 04/21/04 russ
994         * added auto-disable support from Aras Pranckevicius (with
995           modifications by russ). this useful feature can speed up
996           simulation significantly in some cases.
997         
998         * various internal tidyups.
1000 04/20/04 russ
1002         * changed the meaning of the 'index' argument to dJointGetBody():
1003           it was the only remaining API function that does not respect
1004           dJOINT_REVERSE (spotted by Matthew D. Hancher).
1005         
1006         * updated the C++ headers: fixed two minor bugs and added
1007           support for dQuadTreeSpace, dRay, and the dGeom::getSpace() method
1008           (from Matthew D. Hancher).
1010 04/18/04 russ
1012         * changed the way that the dInfinity constant is implemented: now it
1013           is #defined to be one of: FLT_MAX, DBL_MAX, HUGE_VAL, HUGE_VALF, or
1014           a large numeric constant. previously it was a variable that was
1015           exported from the library. this simplifies the configuration and
1016           build process quite a bit, especially in the case of DLLs.
1017         
1018         * removed the old, deprecated collision system (geom.cpp,space.cpp,
1019           geom.h,space.h,odecpp_old_collision.h). the ODE_OLD_COLLISION
1020           configuration setting no longer has any meaning.
1021         
1022         * removed support for dGeomGroups, which have been deprecated for
1023           a while and are equivalent to 'spaces' anyway.
1025 04/13/04 russ
1027         * bug fix in dMassSetCappedCylinder(), from Matthew D. Hancher.
1029 04/08/04 russ
1031         * added trimesh-CCylinder capability, from Vadim Macagon
1032           <vadim_mcagon@hotmail.com>.
1034 04/04/04 adam
1036         * yet another rewrite of triangle-box collision code, this
1037         time based on code donated by Croteam, ported by asko@jetti.org
1038         and tweaked by Erwin.
1040 04/04/04 adam
1042         * merged trimesh-trimesh collision code by
1043         Jeffrey Smith <jeffreys@Softimage.com>.
1045         * changed it to not break the trimesh interface, fix
1046         some GCC compilation problems, bring it up to date with
1047         ODE changes from 2003-11-15 -> 2004-04-04.
1049         * add ability to drop meshes on meshes in test_moving_trimesh,
1050         not as good as it could be but it's illustrative.
1052 01/16/04 adam
1054         * implement a bunch of ultra-simple TriMesh functions that were
1055         in the headers but not in the code -- patch by
1056         Vadim Macagon <vadim_mcagon@hotmail.com>
1058         * disable temporal coherence on trimeshes by default, since
1059         it has scaleability issues that don't make it a general clear win.
1061 12/01/03 adam
1063         * implement dxHashSpace::collide2(), not particularly efficiently.
1065 11/14/03 adam
1067         * applied several Trimesh fixes and improvements from
1068         Aras Pranckevicius <nearaz@interamotion.com>
1070 10/22/03 adam
1072         * apply Nguyen Binh's work for removing many dSetZero() calls
1073         and some other extraneous initializations.
1075 07/29/03 martin
1077         * added dJointAdd*Torque/Force().
1079 07/10/03 russ
1081         * added the StepFast code, by David Whittaker.
1083 07/02/03 martin
1085         * added dMassSet*Total().
1087 07/01/03 martin
1089         * added joint limits and motors to universal joints.
1091         * reversed the polarity of the dJOINT_REVERSE flag.
1093 06/30/03 russ
1095         * added the TriMesh geom class and the quad tree space to the ODE
1096           core. both of these were developed by Erwin de Vries. added OPCODE
1097           to the ODE distribution, this is required by TriMesh.
1099 06/23/03 martin
1101         * added dGeomSetQuaternion() and dGeomGetQuaternion()
1102         
1103         * added dJointGet*Anchor2()
1105 05/07/03 russ
1107         * added dGeomGetSpace().
1109 02/05/03 russ
1111         * added dMassSetCylinder().
1113 12/07/02 russ
1115         * added dAreConnectedExcluding().
1117 11/30/02 russ
1119         * added the ray geom class.
1121         * added the dGeomXXXPointDepth() functions.
1123         * added a collision test infrastructure, and some more tests.
1125 11/24/02 russ
1127         * added support for multiple box-box contacts.
1129 11/10/02 russ
1131         * added new collision system. select between the old/new system by
1132           setting the ODE_OLD_COLLISION variable in config/user-settings.
1134 10/28/02 russ
1136         * fixed two problems in the LCP code to improve the reliability of
1137           the dContactApprox1 contact mode.
1139         * added a FAQ question about rolling bodies getting stuck when they
1140           hit multiple geoms.
1142 09/08/02 russ
1144         * added dClosestLineSegmentPoints().
1145         * implemented dCollideCB().
1147 08/28/02 russ
1149         * added dJointSetFeedback() and dJointGetFeedback().
1151 08/05/02 russ
1153         * added dGeomTransformSetInfo() and dGeomTransformGetInfo().
1155 07/13/02 russ
1157         * added dBodySetForce(), dBodySetTorque(), dWorldImpulseToForce(),
1158           dBodyGetPosRelPoint(), dBodyGetPosRelPoint(), dBodyVectorToWorld(),
1159           dBodyVectorFromWorld().
1161         * added dBodyGetPointVel() (thanks to Colin Reed).
1163         * added a new C++ interface (from Martin C. Martin, with modifications
1164           by russ). the old C++ interface is now in odecpp_old.h.
1166 06/25/02 russ
1168         * added an additional BSD-style licensing option for ODE.
1170 06/23/02 russ
1172         * added dCloseODE(), contributed by Nate Waddoups and David McClurg.
1174 05/16/02 russ
1176         * added dSpaceQuery(), contributed by Nate Waddoups.
1178 04/07/02 russ
1180         * added a section to the documentation for universal joints.
1181           this includes a picture of the joint.
1183 04/05/02 russ
1185         * added a universal joint class (generously contributed by
1186           Martin C. Martin). it doesn't (yet) have a motor or joint limits,
1187           but it does come with tests.
1189 03/11/02 russ
1191         * makefile changes to accomodate OSs with command line length
1192           limitations (thanks to Norman Lin).
1194 01/06/02 russ
1196         * added the dBodySetGravityMode() and dBodyGetGravityMode()
1197           functions, which change the dxBodyNoGravity body flag.
1199         * added support for building a DLL with MSVC - there is now a
1200           msvc-dll target. thanks to Norman Lin for doing this.
1202 12/28/01 russ
1204         * added the dParamCFM joint parameter.
1206 12/24/01 russ
1208         * reworked the build system to make it more cross-platform.
1209           there is now a single top-level makefile and a configurator.c
1210           program. see the INSTALL file for details.
1212 12/04/01 russ
1214         * the "angular motor" joint has been completed, and a new section
1215           has been added to the documentation.
1217 11/26/01 russ
1219         * added a new joint type: "angular motor". using this joint is a good
1220           way to get ball-joint motors and limits. this is work in progress -
1221           it has not been fully implemented or tested yet.
1223 11/22/01 russ
1225         * replaced the mmap()-based joint group stack (stack.cpp) with a
1226           malloc()-based arena stack (obstack.cpp). this will be more
1227           portable and should not impact performance.
1229 11/12/01 russ
1231         * changed the meaning of the 'flags' parameter to dCollide() and
1232           related functions: now the size of the contact buffer is kept in
1233           the lower 16 bits. this change will be backward compatible.
1235         * added dBodyGetFiniteRotationMode() and dBodyGetFiniteRotationAxis().
1237         * added dBodyAddForceAtRelPos() function.
1239 11/11/01 russ
1241         * added the ability to manually enable and disable bodies.
1242           see dBodyEnable(), dBodyDisable(), dBodyIsEnabled().
1244         * fixed a potential bug: when a world is destroyed that contains
1245           joints in joint groups, those joints are marked as "deactivated" in
1246           the joint group, so when the joint group is destroyed they can be
1247           ignored.
1249         * the test_boxstack demo has new options to enable and disable bodies.
1251         * new configuration parameter in config.h: dEFFICIENT_SIZE.
1253 11/11/01 russ
1255         * started the change log for ODE. changes older than today were added
1256           to this file by inspecting the CVS logs.
1258 11/05/01 russ
1260         * added REAL() constructions for floating point numbers, to prevent
1261           many warnings when compiling under VC++.
1263 11/03/01 russ
1265         * added geometry transform class, documented composite objects.
1267         * added collision rule: no contacts if both geoms on the same body.
1268           this is not the best rule, may have to remove this in the future.
1270         * new dMassAdd() function.
1272         * capped cylinder to capped cylinder collision function.
1274 10/31/01 russ
1276         * increase CFM in some demos to make them more robust.
1278 10/29/01 russ
1280         * added new accessor functions.
1282 10/19/01 russ
1284         * added the dJOINT_TWOBODIES flag to the joint, that says it can not
1285           be attached to just one body.
1287 10/12/01 russ
1289         * fixed a collision bug in dCollide() that was causing memory
1290           corruption when multiple contacts were being returned.
1292 10/11/01 russ
1294         * joints can now return m=0 to be "inactive". added a "null" joint
1295           to test this.
1297 10/09/01 russ
1299         * in the LCP solver, try to fail gracefully when s <= 0.
1301         * dAABBTestFn() API change.
1303 10/08/01 russ
1305         * fixed a contact swapping bug in dCollide().
1307 10/07/01 russ
1309         * added capped cylinder geometry object.
1311 09/30/01 russ
1313         * the test_buggy demo now uses geometry groups.
1315         * added a dAABBTestFn field in the geometry classes.
1317 09/29/01 russ
1319         * added geometry groups.
1321 09/20/01 russ
1323         * added finite rotation stuff.