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 11/17/2014 Daniel K. O.
12 * Added support for using libccd from the system (if found via
15 11/10/2014 Oleh Derevenko
16 * Floating point division by zero in capsule-ray collision routine
17 in case if the ray axis was parallel the cylinder and the ray started
18 from within it fixed (issue #26)
20 11/08/2014 Oleh Derevenko
21 * Threading support has been extended to complete implementation
24 10/29/2014 Daniel K. O.
25 * Added dJointSetDBallDistance
27 10/19/2014 Oleh Derevenko
28 * Built-in threading implementation compilation fixed for OSX
29 (clock_gettime() is missing from the system - reported by Bram)
31 08/10/2014 Oleh Derevenko
32 * Declarations of dWorld[Get/Set]AutoDisableLinearAverageThreshold and
33 dWorld[Get/Set]AutoDisableAngularAverageThreshold have been removed
34 from public headers (were orphaned since rev.1052)
36 07/16/2014 Oleh Derevenko
37 * Two fixes by Francesco Cat applied (fixes for mistakes made during
38 code style improvements in the past)
41 * Added dODE_VERSION macro to public headers (issue #24).
44 * Added dJointGetHinge2Angle2 (issue #12).
47 * Added dWorldSetData/dWorldGetData (issue #21).
50 * Applied patch #185: Stable, implicit gyroscopic forces.
53 * Fixed cylinder AABB computation.
56 * Removed ALLOCA calls from dHashSpace; it should not depend
57 on stack size limits anymore.
60 * Applied patch #181: fix some bugs in AMotor joint.
61 * Applied patch #186: fix some bugs in PU joint.
62 * Applied patch #182: Transmission joint.
63 * Applied patch #184: implement rolling friction for contacts.
65 08/08/13 Oleh Derevenko
66 * Joint feedback forces application fixed in QuickStep implementation
67 (was broken since revision #1919 in old repository (#1927 in new one))
69 08/04/13 Oleh Derevenko
70 * Bugfix #89 by Luc applied (dJointAddSliderForce() adds a zero force
71 when the parent body is NULL)
73 05/18/13 Oleh Derevenko
74 * OU library has been included in ODE at revision #46 instead of
75 being used as an external link due to difficulties using external
76 references with new protocol used for storage at SF.
78 03/03/13 Oleh Derevenko
79 * Fixed issue with "findex==-1" constraints being intermixed with
80 "findex!=-1" ones during constraints random reordering in QuickStep.
82 02/03/13 Oleh Derevenko
83 * [u]int[8/16/32] renamed to contain "d" prefix so that global namespace
84 was not polluted with these names unconditionally.
85 If your project depended on these types other than just for passing
86 parameters to ODE calls, add similar typedefs for yourself in some
87 of your project's global headers.
89 01/02/13 Oleh Derevenko
90 * Applied patch #183 by Joseph Cooper (complementary matrix
93 12/28/12 Oleh Derevenko
94 * A bug with heightfield data assigned to a wrong field in
95 dGeomHeightfieldSetHeightfieldData fixed (bug report #88 by Luc).
97 12/18/12 Oleh Derevenko
98 * Fixed issue with some kinds of joints (Ball, DBall, DHinge, Fixed)
99 might overwrite world ERP value with their custom ERP during
100 getInfo2() call and that inappropriate value would then be passed
101 to subsequent joints in solver instead of world ERP.
103 12/01/12 Oleh Derevenko
104 * Fixed issues reported in patches #151 and #22 (collisions with
105 SAPSpace and QuadTreeSpace might not work because geometries list
106 was misused in them).
107 * Applied patch #160 "IsPointInPolygon in convex.cpp returns wrong
108 results" (by Janis Rucis)
110 11/25/12 Oleh Derevenko
111 * Configuration option --disable-threading-intf added
112 (--no-threading-intf for Windows/Premake). This allows disabling
113 threading interface support (external implementations may not be
114 assigned) but eliminates dependency on OU and use of atomics in
117 11/05/12 Oleh Derevenko
118 * Fixed zero comparisons in OPCODE to use relative error instead of
119 absolute epsilon value (found by Bill Sellers)
121 06/08/12 Daniel K. O.
122 * Removed the need for defining dSINGLE/dDOUBLE; this is stored now in
123 the generated ode/precision.h header.
124 * Some code cleanup to get rid of GCC warnings.
126 05/30/12 Daniel K. O.
127 * Made drawstuff draw shadows for lines.
128 * Fixed dhinge's last constraint to properly handle rotations.
130 05/03/12 Daniel K. O.
131 * Added two new joints: Double Ball and Double Hinge.
133 04/22/12 Daniel K. O.
134 * Fixed plane2d joint: uninitialized variables (reported by Dimitris
137 04/14/12 Oleh Derevenko
138 * Assertion checking macros moved into library private headers.
140 04/13/12 Daniel K. O.
141 * Applied patch from bug #3431829 - better handling of capsule-box with
143 * Fixed zero-mu issues: now either mu or mu2 can be set to zero.
145 03/17/12 Oleh Derevenko
146 * Threaded execution support interface added. Optional built-in threading
147 implementation added.
148 Internal threading implementation is excluded by default and to be used,
149 it must be enabled with configure/premake.
150 At present, if threading interface is assigned to a world, island
151 selection and stepping is performed in multiple threads (one thread per
154 03/12/12 Oleh Derevenko
155 * PURE_INLINE macro renamed to ODE_PURE_INLINE and definition of
156 dNextAfter()/dCopySign() corrected to avoid creating conflicts with
159 02/03/12 Oleh Derevenko
160 * Assertion checking macros moved from common.h to error.h
162 12/18/11 Oleh Derevenko
163 * dIVERIFY macro added (same as dIASSERT in debug mode but evaluates its
164 expression in release mode) to be used to assert variable value
165 which is not used further in text while avoiding compiler warning.
166 * dICHECK macro added (same as dIASSERT but evaluates its expression and
167 raises assertion fault regardless of compilation mode) to be used to
168 generate a fault in cases when error is very unlikely but must be
169 handled and handling is very troublesome (e.g. failure to lock a mutex
170 due to lack of resources).
172 12/07/11 Oleh Derevenko
173 * Partially fixed size_t to integer conversion warnings
174 * Fixed type signedness and added casts to size_t wherever necessary
177 11/04/11 Daniel K. O.
178 * Applied patch #3429454 - fix compilation on some platforms.
180 10/28/11 Daniel K. O.
181 * Fixed a box-capsule bug: more reasonable normal for deep penetrations
182 (contributed by Georg Martius.)
184 10/27/11 Daniel K. O.
185 * Disabled merging of contacts for trimesh-sphere by default.
186 * Added new demo: demo_tracks.
188 10/17/11 Daniel K. O.
189 * Added python bindings, contributed by Gideon Klompje.
190 * Updated some build scripts.
191 * Changed spheres distribution in demo_space_stress.
193 05/17/11 Oleh Derevenko
194 * A typo in step.cpp fixed (assignment operator in a conditional
195 instead of comparison) (reported by Bram Stolk)
197 01/29/11 Oleh Derevenko
198 * Heightfield zone boundaries calculation code fixed to also consider
199 whole next cell after the AABB if the AABB ends exactly at the cell
202 01/23/11 Daniel K. O.
203 * Applied patch from Daniel Fiser, add libccd collider for
206 01/20/11 Daniel K. O.
207 * Applied patch from Daniel Fiser, fix infinite loop in libccd caused
208 by numerical problems.
210 01/06/11 Daniel K. O.
211 * Applied patch from Daniel Fiser, efficient libccd tests when using
212 CONTACTS_UNIMPORTANT.
214 12/17/10 Daniel K. O.
215 * Applied patches from Daniel Fiser for new colliders based on libccd.
217 11/08/10 Daniel K. O.
218 * Applied patches from Daniel Fiser to incorporate libccd for
219 Cylinder-Cylinder collision tests.
221 08/21/10 Oleh Derevenko
222 * Fix applied to dxReallocateTemporayWorldProcessContext() to remove typo
223 which caused segmentation fault (by Kyle McKay).
224 dTestSolveLCP() fixed to avoid exceeding allocated memory pool
227 07/19/10 Oleh Derevenko
228 * Patch applied (#3030783) to fix drawstuff dimensions being ignored
229 in OSX GLUT port (by Danny Price).
232 * Applied patch #2991622: dGeomGetRelPointPos, dGeomGetPosRelPoint,
233 dGeomVectorToWorld, and dGeomVectorFromWorld.
235 07/16/10 Daniel K. O.
236 * Fixed bug #2937076: don't try to build demos if drawstuff is disabled.
238 05/02/10 Oleh Derevenko
239 * Missing extern "C" wrapper has been added to include/ode/export-dif.h
240 (reported by Danny Price). The change affects dWorldExportDIF() public
243 05/02/10 Oleh Derevenko
244 * Patch applied (#2995450) to generate up to four contacts for box-
245 plane collision test (by alexdu) and fix contact depths.
247 05/02/10 Oleh Derevenko
248 * dGeomLowLevelControl function added with ability to change/query OPCODE
249 trimesh-sphere contact merging behavior at runtime.
251 02/18/10 Daniel K. O.
252 * Fixed bug affecting disabled joints and dWorldStep.
254 01/16/10 Oleh Derevenko
255 * Patch applied (#2931174) to make demos work for recent MacOS.
256 * Patch applied (#2931177) to fix the demos' framerate on X11.
258 12/20/09 Oleh Derevenko
259 * QuadTreeSpace implementation corrected to avoid object-block relation
260 ambiguity due to numeric errors.
262 12/04/09 Oleh Derevenko
263 * odecpp classes changed to be inheritable and easily expandable
265 11/29/09 Oleh Derevenko
266 * Improvement for trimesh-plane collision (also used in trimesh-heightfield)
267 to exclude mesh vertices that have already generated contacts from further
268 examination and contact generation in other triangles (suggested by LR).
270 10/25/09 Oleh Derevenko
271 * Macros changed to static inline functions in odemath.h and related files.
272 Some code duplication has been eliminated across the files.
274 * Fixed handling of --disable-asserts and --enable-double-precision
275 (absence of --enable-double-precision) in configure script. The script
276 was not appending compiler defines correctly.
278 * dWorldStep implementation changed to remove allocation on stack.
279 dUSE_MALLOC_FOR_ALLOCA define has been removed as well as corresponding
280 configuration parameter. Also dMemoryFlag public variable has been removed.
281 (look for presence of ODE_EXT_malloc_not_alloca configuration string if
282 your application is dependent on that variable).
284 09/05/09 Oleh Derevenko
285 * dWorldStepFast1 API removed along with dWorld[Get/Set]AutoEnableDepthSF1
287 08/29/09 Oleh Derevenko
288 * Fixed uninitialized floating point array used in computations.
290 08/12/09 Oleh Derevenko
291 * A typo fixed in dGeomCopyOffsetRotation() (final_posr was used instead
292 of offset_posr). Reported by Tilmann.
294 08/11/09 Daniel K. O.
295 * Made sure neither dSINGLE or dDOUBLE is defined by default; the user
296 should always explicitly specify the precision.
298 06/27/09 Oleh Derevenko
299 * New functions have been added:
300 - dWorldUseSharedWorkingMemory
301 - dWorldCleanupWorkingMemory
302 - dWorldSetStepMemoryReservationPolicy
303 - dWorldSetStepMemoryManager
305 06/25/09 Remi Ricard (papaDoc)
306 * Add limit to the to the second axis of the universal joint
309 06/14/09 Oleh Derevenko
310 * dWorldQuickStep re-implemented to avoid memory allocation on stack.
311 Also several optimizations have been made to decrease memory
312 requirements and optimize algorithm implementation of dWorldQuickStep.
313 dWorldStep still remains with old memory allocation however new APIs
314 mentioned below are fully functional for it.
315 Both dWorldStep and dWorldQuickStep have been changed to return boolean
318 * dInitODE2() changed to automatically call
319 AllocateODEDataForThread(dAllocateFlagBasicData) after library
320 initialization as this is a required initialization minimum that
321 must always be performed anyway.
323 06/05/09 Daniel K. O.
324 * Removed aliasing issues from OPCODE/Ice, plus some other warnings.
325 Now it builds on gcc 4.3.2 with '-Wall -Werror -O3".
327 05/30/09 Oleh Derevenko
328 * A minor memory usage optimization for QuickStep.
330 05/24/09 Daniel K. O.
331 * Made the new trimesh collider the default.
332 * Added a "-texturepath" option to drawstuff.
334 05/18/09 Oleh Derevenko
335 * Heightfield rotation fixed to avoid NaNs while rotating infinite
338 05/03/09 Oleh Derevenko
339 * Incorrect parameter order fixed on contact merging in Sphere-Trimesh
340 collisions. The bug resulted in merged contact remaining with normal
341 of first contact found. Thanks to Dimitris Papavasiliou for reporting.
343 04/23/09 Daniel K. O.
344 * Fixed bug #2685170: use the C99 __func__ instead of __FUNCTION__ when
345 a C99 implementation is available.
347 04/07/09 Remi Ricard (papaDoc)
348 * Remove unused code in demo_joints.cpp, reported by Tilmann.
350 04/07/09 Remi Ricard (papaDoc)
351 * Fix bug in collision categories in demo_jointPU, reported by Tilmann
353 03/14/09 Oleh Derevenko
354 * A possibility to initialize/close ODE multiple times recursively has
356 Also, now a call to dSpaceSetManualCleanup() is required for each
357 space right after creation if ODE has been initialized in thread data
360 03/07/09 Oleh Derevenko
361 * Thread local data has been cleaned up from OPCODE and OdeTls as it is
362 not used (OPC_SweepAndPrune.* and OPC_BoxPruning.* have been removed
363 - rebuilding project files is necessary).
365 02/07/09 Daniel K. O.
366 * New house of cards demo, which stresses the friction handling stability.
368 01/29/09 Remi Ricard (papaDoc)
369 * Fix bug: Fix problem when attaching no body to a joint. Before calling
370 setRelativeValues a check is made for bodies.
373 01/28/09 Daniel K. O.
374 * Applied patch #2538046: Heightfield AABB bounds patch.
376 01/23/09 Remi Ricard (papaDoc)
377 * Add new function dJointSetUniversalAxis1Offset and dJointSetUniversalAxis2Offset
378 * Add unittest for those funcitons.
380 01/23/09 Remi Ricard (papaDoc)
381 * Fix problem with dJointGetUniversalAngle2 when the joint is attached to
382 only a body 2. The sign was inverted.
383 * Add unit test to verify for this problem
385 01/21/09 Remi Ricard (papaDoc)
386 * Fix bug reported by Tilman: dxJointPU::getInfo1 was setting twice the
387 limit of limot1 to zero and not limot2
389 01/17/09 Daniel K. O.
390 * Fixed a bug in dSpaceCollide2: if both geoms are not in spaces they would
391 not have valid AABBs.
393 12/20/08 Daniel K. O.
394 * New functions: dJointEnable, dJointDisable, dJointIsEnabled
397 12/19/08 Daniel K. O.
398 * Removed inline asm statements that break builds on 64-bit VC++.
400 12/09/08 Daniel K. O.
401 * Applied patch #2381592, which adds support for Kinematic Bodies.
403 12/06/08 Oleh Derevenko
405 * Applied a patch by Martijn Buijs to make GIMPACT trimesh-ray collisions to
406 be consistent with those in OPCODE.
407 * Swapped geometries returned in contacts for OPCODE Trimesh-Plane collisions
408 as they were returned in unnatural order being different from that in GIMPACT
409 * Applied a patch by Martijn Buijs to make side1, side2 fields of contact
410 structure be always initialized, either with -1 for non-trmesh geometries
411 or with triangle index for trimeshes. These fields were only assigned for
412 trimesh-trimesh collisions before.
413 * dGeomTriMeshSetTriMergeCallback/dGeomTriMeshGetTriMergeCallback API added
414 to set/get user defined callback procedure for trimeshes that would be
415 invoked when contacts are merged to let user code accumulate attributes of
416 original contact triangles and generate a fake index by which it would
417 later be able to determine those attributes. If the callback is not
418 assigned (the default) -1 is generated as triangle index for merged
419 contacts (there was an index of first of merged triangles before!!!).
420 The callback is currently used within OPCODE trimesh-sphere and OPCODE
421 new trimesh-trimesh collisions.
423 11/20/08 Remi Ricard (papaDoc)
424 * Fix problem with dJointGetPUPosition and
425 dJointGetPUPositionRate when the joint is attached to only
426 a body 2. The sign was inverted.
427 * Fix bug: When a pu joint had only one body attached to position 2,
428 dJointAttach(jId, 0, bId). The body was not push in the right direction to
429 move back between the limits.
430 * Add unit test to check the above problem
431 * Add the function void dJointSetPUAnchorOffset
432 * Make the function void dJointSetPUAnchorDelta deprecated
434 11/19/08 Remi Ricard (papaDoc)
435 * Fix bug: When a pr joint had only one body attached to position 2,
436 dJointAttach(jId, 0, bId). The body was not push in the right direction to
437 move back between the limits.
438 * Add unit test to check the above problem
440 11/19/08 Remi Ricard (papaDoc)
441 * Fix problem with dJointGetPRPosition and
442 dJointGetPRPositionRate when the joint is attached to only
443 a body 2. The sign was inverted.
444 * Add unit test to check the above problem
445 * Increase the tolerance to remove failure in unit test
446 * Remove compilation warning in unit test with the use of REAL()
448 11/18/08 Remi Ricard (papaDoc)
449 * Fix bug: When a piston joint had only one body attached to position 2,
450 dJointAttach(jId, 0, bId). The body was not push in the right direction to
451 move back between the limits.
452 * Add more functionality to demo_piston.cpp
453 * Run astyle on modified files.
455 11/18/08 Remi Ricard (papaDoc)
456 * Fix bug: When a slider joint had only one body attached to position 2,
457 dJointAttach(jId, 0, bId). The body was not push in the right direction to
458 move back between the limits.
460 10/29/08 Oleh Derevenko
462 * Premake scripts changed to only include chosen collision library
463 sources in project on Windows. --all-collis-libs premake option
464 added to allow inclusion of all collision library sources into the
467 10/15/08 Remi Ricard (papaDoc)
468 * Applying patch #2158425 64-bit GIMPACT provided by Mark
469 William. This patch enable GIMPACT to works on 64-bit machine.
471 10/15/08 Remi Ricard (papaDoc)
472 * Add function dJointGetPRAngle and dJointGetPRAngleRate
474 10/15/08 Remi Ricard (papaDoc)
475 * Enable the motor on the rotoide part of the PR joint
477 10/15/08 Remi Ricard (papaDoc)
478 * Add unit test to check if using directly a joint
479 or using after setting with default values is the same.
480 * Add function setRelativeValues called in dJointAttach for
483 10/10/08 Remi Ricard (papaDoc)
484 * Fix bug in dJointGetPUAxis2. The axis was not multiplied with the
485 the rotation matrix of the good body.
486 * Fix bug if there is only one body on the PU joint the axis returned
487 was not the right one.
488 * Add unit test to verify previous bug.
490 10/03/08 Rodrigo Hernandez (Kwizatz)
491 * Added Blender script to create ODE convex geoms under tools.
493 10/01/08 Rodrigo Hernandez (Kwizatz)
494 * Convex-Convex collision detection code is finally stable.
496 08/31/08 Daniel K. O.
497 * Applied patch 2080674: Improved dBodySetRotation; now exact rotation
498 matrices are preserved until the next simulation step.
500 08/07/08 Daniel K. O.
501 * Fixed strict aliasing issue that was breaking the new trimesh collider.
503 07/24/08 Daniel K. O.
504 * New functions: dBodyGetGyroscopicMode and dBodySetGyroscopicMode
507 07/15/08 Remi Ricard (papaDoc)
508 * Add a new define ODE_API_DEPRECATED to mark function as deprecated
511 07/14/08 Remi Ricard (papaDoc)
512 * Finish adding patch 1336066: Joint feedback in quickstep by jsinecky
513 * demo_boxstack.cpp can now print joint feedback
515 07/11/08 Daniel K. O.
516 * Bumped version for 0.10.1
517 * Added proper usage of libtool's version info.
519 07/10/08 Remi Ricard (papaDoc)
520 * Add new function dJointSetPistonAnchorOffset
521 * Add unittest for the piston joint
522 * Fix problem with dJointGetPistonPosition and
523 dJointGetPistonPositionRate when the joint is attached to only
524 a body 2. The sign was inverted.
526 07/09/08 Remi Ricard (papaDoc)
527 * Optimize function Multiply1_12q1 in quickstep
528 Patch proposed by Riemer v.d. Zee and modified by Patrick Baggett
530 07/08/08 Remi Ricard (papaDoc)
531 * Update the slider joint to have the same behavior as the other joint
532 when there is only a body2 attached to it.
533 * Update documentation for the slider joint.
534 * Remove warning by using REAL()
535 * Add new unittest for dJointGetSliderPositionRate
537 07/08/08 Remi Ricard (papaDoc)
538 * Update unittest for the slider.
539 * Rename the new function dJointSetHingeAxisDelta to
540 dJointSetHingeAxisOffset. This remove will remove confusion with
541 the old function dJointSetHingeAnchorDelta
542 * Update documentation for the Hinge unittest
543 * Remove warning by using REAL()
545 07/07/08 Daniel K. O.
546 * Max Correcting Vel doesn't affect bounciness, as before.
548 07/03/08 Remi Ricard (papaDoc)
549 * Add new function dJointSetHingeAxisDelta
550 * Add unittest for this new function
552 06/17/08 Remi Ricard (papaDoc)
554 * Move the computation of the Relative Rotation for the slider joint
556 * Add unittest for to check qrel
558 06/17/08 Remi Ricard (papaDoc)
560 * Remove unused variables.
561 * Remove a conversion warning between unsigned int and int
563 06/17/08 Remi Ricard (papaDoc)
565 * Move the function hingeComputeRelativeRotation as a member of
566 the hinge structure/class.
568 06/17/08 Remi Ricard (papaDoc)
570 * Move the computation of the Relative Rotation for the fixed joint
573 06/16/08 Remi Ricard (papaDoc)
575 * Add testunit for the dxJointFixed
577 06/04/08 Daniel K. O.
579 * Moved joints to ode/src/joints, converted them to true virtual
582 06/02/08 Daniel K. O.
584 * Added an Auto<T> template to step.cpp to handle memory deallocation.
586 05/09/08 Daniel K. O.
588 * Applied patch #1335202: Contact Joint Motion (with some corrections),
589 and added demo_motion.
591 05/01/08 Oleh Derevenko
593 * Memory leak in GIMPACT fixed (reported by Derek)
595 04/28/08 Oleh Derevenko
597 * Added possibility to collide a space of lower sublevel as a geometry
598 against another space of a higher level with dSpaceCollide2.
599 dSpaceSetSublevel/dSpaceGetSublevel are used for sublevel assignment/
602 04/27/08 Oleh Derevenko
604 * Fixed incorrect memory copying which could lead to memory corruption
605 in GIMPACT (luckily, in unused code)
606 * Fixed possible memory read beyond the end of allocated buffer along
607 with unnecessary extra memory copying in GIMPACT.
608 * Fixed buffer reserve being incorrectly reset to zero for bitsets
609 what resulted in unnecessary memory reallocations in GIMPACT.
610 * Implemented support for ability to run collision detection from
611 multiple threads for separate spaces.
613 04/14/08 Oleh Derevenko
615 * Fixed possible memory corruption in new trimesh-trimesh collider
616 in case if two degenerated triangles are checked against each other.
618 04/12/08 Oleh Derevenko
620 * Fixed sporadic assertion failure on vector normalization caused
621 by small triangles degenerating into segments during space
626 * Fix a bug in dJointXXXGetInfo. The value in limot.limit was not
627 always updated. (Ex: If hi and lo limit were changed).
631 * Added a new Joint: Prismatic Universal (patch #1828454).
635 * Fixed bug #1841309: collide2() method buggy.
639 * New function: dVector4Copy.
643 * Added stub calls for trimesh functions.
644 * Applied patch #1914232: dGetConfiguration.
645 * Applied patch #1655333: Optimize the function dNormalize3.
646 * New function: dSetColliderOverride.
647 * New function: dCheckConfiguration.
651 * Disabled building shared library by default with autotools.
655 * New function: dJointGetNumBodies (patch #1901550).
656 * New function: dSpaceGetClass (patch #1901637).
657 * Applied patch #1901649: Add missing function in the export
661 * Fixed drawstuff build issues on OSX.
663 01/12/08 Daniel K. O.
665 * Fixed a typedef bug in configure.in.
666 * Added dCylinder to the C++ wrappers.
667 * Applied patch 1851394: support for GIMPACT with double precision,
669 * Moved bunny geometry to bunny_geom.h.
671 12/11/07 Daniel K. O.
673 * Added damping and MaxAngularVel() functions.
674 * Const-correctness: added const qualifier to some dWorldGet and dBodyGet
676 * Updated the odecpp.h header.
678 12/07/07 Daniel K. O.
680 * Removed most of the compiler warnings from Drawstuff, ODE and
682 * Upgraded automake requirement to 1.10, and change some Makefile.am
686 * Modified autotools to use libtool for
687 library generation and administration
688 * Removed release and debug flags for configure.in
689 CPPFLAGS, CFLAGS, CXXFLAGS should be set by the
690 user to their liking, respecting autotools policies.
692 11/30/07 Daniel K. O.
693 * Applied patch 1813079 (moved callback)
694 * Replaced moveAndRotateBody by dxStepBody in stepfast.cpp
698 * Added 'Sweep and Prune' collision space.
699 * New Piston joint type with demo, by Remi Ricard
700 * Added build option to use 16-bit indices for OPCODE trimesh
704 * Integrated Christoph Beyer's average based sampling system for body
707 10/26/06 Francisco Leon
709 * Totally refactored trimesh collision system.
710 Using GIMPACT instead of OPCODE. Now works correctly, and faster.
711 Visit http://gimpact.sourceforge.net.
713 * Finally, test_moving_trimesh.exe works nicely.
715 * Fixed autodisable system. Now is possible to set bigger sleeping
716 threshold values and objects won't be sleeping on the air. They will
717 rest on the floor properly.
719 * dInitODE function added.
721 * Is Obligatory to call dInitODE() at the beginning for initialize ODE,
722 and calling dCloseODE() when the program ends.
726 * Fixed two bugs in cyl/plane collision test.
730 * New Rotoide - Prismatic joint type
731 * dJointGetUniversalAngles for efficient angle retrieval.
735 * Integrated plane2d joint type which constrains bodies to z == 0.
739 * Added heightfield primitive collision code. Simple test available in
740 ode/test/test_heightfield
744 * Added Convex primitive collision code,
745 currently only convex-sphere and convex-plane work
749 * Added program to test trimesh vs sphere: ode/test/test_basket
753 * Added new autogenerated Visual Studio projects, with Premake scripts
757 * Added plane/cyl intersection test
758 * Renamed CCylinder to Capsule
762 * Added support for geom offsets.
766 * Removed LIBTOOL from autotools since it was not really required.
767 * Added a target to build ODE as a shared library, this shared
768 library gets build alongside the static one, no flags required.
772 (Backported patches from STABLE branch, applied by Adam)
774 * dRandInt changed for a non-double all-int version.
775 * mics minor fixes and improvements.
779 * Fixed segmentation fault with OPCODE on 64 bits systems.
783 * Fixed timer.cpp compiler error on x86-64 using GCC.
787 * Added trimesh preprocessing to mark unneeded edges and verts. Also
788 added support for preprocessed info to the ccylinder-trimesh
793 * Important AMotors bugfix
797 * Assorted small bugfixes and tweaks for
798 trimesh_{box,ccylinder,trimesh} collisions
802 * added functions to joint.cpp to allow joint attachment to moving
805 * added malloc-based memory allocation in step.cpp & lcp.cpp (turned
806 on with a #define switch in common.h)
810 * added joint feedback to the QuickStep solver
814 * added warm starting to the QuickStep solver
818 * added the QuickStep solver
820 * added contact parameter functions.
824 * use dRandInt instead of rand() in stepfast.
828 * added auto-disable support from Aras Pranckevicius (with
829 modifications by russ). this useful feature can speed up
830 simulation significantly in some cases.
832 * various internal tidyups.
836 * changed the meaning of the 'index' argument to dJointGetBody():
837 it was the only remaining API function that does not respect
838 dJOINT_REVERSE (spotted by Matthew D. Hancher).
840 * updated the C++ headers: fixed two minor bugs and added
841 support for dQuadTreeSpace, dRay, and the dGeom::getSpace() method
842 (from Matthew D. Hancher).
846 * changed the way that the dInfinity constant is implemented: now it
847 is #defined to be one of: FLT_MAX, DBL_MAX, HUGE_VAL, HUGE_VALF, or
848 a large numeric constant. previously it was a variable that was
849 exported from the library. this simplifies the configuration and
850 build process quite a bit, especially in the case of DLLs.
852 * removed the old, deprecated collision system (geom.cpp,space.cpp,
853 geom.h,space.h,odecpp_old_collision.h). the ODE_OLD_COLLISION
854 configuration setting no longer has any meaning.
856 * removed support for dGeomGroups, which have been deprecated for
857 a while and are equivalent to 'spaces' anyway.
861 * bug fix in dMassSetCappedCylinder(), from Matthew D. Hancher.
865 * added trimesh-CCylinder capability, from Vadim Macagon
866 <vadim_mcagon@hotmail.com>.
870 * yet another rewrite of triangle-box collision code, this
871 time based on code donated by Croteam, ported by asko@jetti.org
872 and tweaked by Erwin.
876 * merged trimesh-trimesh collision code by
877 Jeffrey Smith <jeffreys@Softimage.com>.
879 * changed it to not break the trimesh interface, fix
880 some GCC compilation problems, bring it up to date with
881 ODE changes from 2003-11-15 -> 2004-04-04.
883 * add ability to drop meshes on meshes in test_moving_trimesh,
884 not as good as it could be but it's illustrative.
888 * implement a bunch of ultra-simple TriMesh functions that were
889 in the headers but not in the code -- patch by
890 Vadim Macagon <vadim_mcagon@hotmail.com>
892 * disable temporal coherence on trimeshes by default, since
893 it has scaleability issues that don't make it a general clear win.
897 * implement dxHashSpace::collide2(), not particularly efficiently.
901 * applied several Trimesh fixes and improvements from
902 Aras Pranckevicius <nearaz@interamotion.com>
906 * apply Nguyen Binh's work for removing many dSetZero() calls
907 and some other extraneous initializations.
911 * added dJointAdd*Torque/Force().
915 * added the StepFast code, by David Whittaker.
919 * added dMassSet*Total().
923 * added joint limits and motors to universal joints.
925 * reversed the polarity of the dJOINT_REVERSE flag.
929 * added the TriMesh geom class and the quad tree space to the ODE
930 core. both of these were developed by Erwin de Vries. added OPCODE
931 to the ODE distribution, this is required by TriMesh.
935 * added dGeomSetQuaternion() and dGeomGetQuaternion()
937 * added dJointGet*Anchor2()
941 * added dGeomGetSpace().
945 * added dMassSetCylinder().
949 * added dAreConnectedExcluding().
953 * added the ray geom class.
955 * added the dGeomXXXPointDepth() functions.
957 * added a collision test infrastructure, and some more tests.
961 * added support for multiple box-box contacts.
965 * added new collision system. select between the old/new system by
966 setting the ODE_OLD_COLLISION variable in config/user-settings.
970 * fixed two problems in the LCP code to improve the reliability of
971 the dContactApprox1 contact mode.
973 * added a FAQ question about rolling bodies getting stuck when they
978 * added dClosestLineSegmentPoints().
979 * implemented dCollideCB().
983 * added dJointSetFeedback() and dJointGetFeedback().
987 * added dGeomTransformSetInfo() and dGeomTransformGetInfo().
991 * added dBodySetForce(), dBodySetTorque(), dWorldImpulseToForce(),
992 dBodyGetPosRelPoint(), dBodyGetPosRelPoint(), dBodyVectorToWorld(),
993 dBodyVectorFromWorld().
995 * added dBodyGetPointVel() (thanks to Colin Reed).
997 * added a new C++ interface (from Martin C. Martin, with modifications
998 by russ). the old C++ interface is now in odecpp_old.h.
1002 * added an additional BSD-style licensing option for ODE.
1006 * added dCloseODE(), contributed by Nate Waddoups and David McClurg.
1010 * added dSpaceQuery(), contributed by Nate Waddoups.
1014 * added a section to the documentation for universal joints.
1015 this includes a picture of the joint.
1019 * added a universal joint class (generously contributed by
1020 Martin C. Martin). it doesn't (yet) have a motor or joint limits,
1021 but it does come with tests.
1025 * makefile changes to accomodate OSs with command line length
1026 limitations (thanks to Norman Lin).
1030 * added the dBodySetGravityMode() and dBodyGetGravityMode()
1031 functions, which change the dxBodyNoGravity body flag.
1033 * added support for building a DLL with MSVC - there is now a
1034 msvc-dll target. thanks to Norman Lin for doing this.
1038 * added the dParamCFM joint parameter.
1042 * reworked the build system to make it more cross-platform.
1043 there is now a single top-level makefile and a configurator.c
1044 program. see the INSTALL file for details.
1048 * the "angular motor" joint has been completed, and a new section
1049 has been added to the documentation.
1053 * added a new joint type: "angular motor". using this joint is a good
1054 way to get ball-joint motors and limits. this is work in progress -
1055 it has not been fully implemented or tested yet.
1059 * replaced the mmap()-based joint group stack (stack.cpp) with a
1060 malloc()-based arena stack (obstack.cpp). this will be more
1061 portable and should not impact performance.
1065 * changed the meaning of the 'flags' parameter to dCollide() and
1066 related functions: now the size of the contact buffer is kept in
1067 the lower 16 bits. this change will be backward compatible.
1069 * added dBodyGetFiniteRotationMode() and dBodyGetFiniteRotationAxis().
1071 * added dBodyAddForceAtRelPos() function.
1075 * added the ability to manually enable and disable bodies.
1076 see dBodyEnable(), dBodyDisable(), dBodyIsEnabled().
1078 * fixed a potential bug: when a world is destroyed that contains
1079 joints in joint groups, those joints are marked as "deactivated" in
1080 the joint group, so when the joint group is destroyed they can be
1083 * the test_boxstack demo has new options to enable and disable bodies.
1085 * new configuration parameter in config.h: dEFFICIENT_SIZE.
1089 * started the change log for ODE. changes older than today were added
1090 to this file by inspecting the CVS logs.
1094 * added REAL() constructions for floating point numbers, to prevent
1095 many warnings when compiling under VC++.
1099 * added geometry transform class, documented composite objects.
1101 * added collision rule: no contacts if both geoms on the same body.
1102 this is not the best rule, may have to remove this in the future.
1104 * new dMassAdd() function.
1106 * capped cylinder to capped cylinder collision function.
1110 * increase CFM in some demos to make them more robust.
1114 * added new accessor functions.
1118 * added the dJOINT_TWOBODIES flag to the joint, that says it can not
1119 be attached to just one body.
1123 * fixed a collision bug in dCollide() that was causing memory
1124 corruption when multiple contacts were being returned.
1128 * joints can now return m=0 to be "inactive". added a "null" joint
1133 * in the LCP solver, try to fail gracefully when s <= 0.
1135 * dAABBTestFn() API change.
1139 * fixed a contact swapping bug in dCollide().
1143 * added capped cylinder geometry object.
1147 * the test_buggy demo now uses geometry groups.
1149 * added a dAABBTestFn field in the geometry classes.
1153 * added geometry groups.
1157 * added finite rotation stuff.