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 03/17/12 Oleh Derevenko
12 * Threaded execution support interface added. Optional built-in threading
14 Internal threading implementation is excluded by default and to be used,
15 it must be enabled with configure/premake.
16 At present, if threading interface is assigned to a world, island
17 selection and stepping is performed in multiple threads (one thread per
20 03/12/12 Oleh Derevenko
21 * PURE_INLINE macro renamed to ODE_PURE_INLINE and definition of
22 dNextAfter()/dCopySign() corrected to avoid creating conflicts with
25 02/03/12 Oleh Derevenko
26 * Assertion checking macros moved from common.h to error.h
28 12/18/11 Oleh Derevenko
29 * dIVERIFY macro added (same as dIASSERT in debug mode but evaluates its
30 expression in release mode) to be used to assert variable value
31 which is not used further in text while avoiding compiler warning.
32 * dICHECK macro added (same as dIASSERT but evaluates its expression and
33 raises assertion fault regardless of compilation mode) to be used to
34 generate a fault in cases when error is very unlikely but must be
35 handled and handling is very troublesome (e.g. failure to lock a mutex
36 due to lack of resources).
38 12/07/11 Oleh Derevenko
39 * Partially fixed size_t to integer conversion warnings
40 * Fixed type signedness and added casts to size_t wherever necessary
44 * Applied patch #3429454 - fix compilation on some platforms.
47 * Fixed a box-capsule bug: more reasonable normal for deep penetrations
48 (contributed by Georg Martius.)
51 * Disabled merging of contacts for trimesh-sphere by default.
52 * Added new demo: demo_tracks.
55 * Added python bindings, contributed by Gideon Klompje.
56 * Updated some build scripts.
57 * Changed spheres distribution in demo_space_stress.
59 05/17/11 Oleh Derevenko
60 * A typo in step.cpp fixed (assignment operator in a conditional
61 instead of comparison) (reported by Bram Stolk)
63 01/29/11 Oleh Derevenko
64 * Heightfield zone boundaries calculation code fixed to also consider
65 whole next cell after the AABB if the AABB ends exactly at the cell
69 * Applied patch from Daniel Fiser, add libccd collider for
73 * Applied patch from Daniel Fiser, fix infinite loop in libccd caused
74 by numerical problems.
77 * Applied patch from Daniel Fiser, efficient libccd tests when using
81 * Applied patches from Daniel Fiser for new colliders based on libccd.
84 * Applied patches from Daniel Fiser to incorporate libccd for
85 Cylinder-Cylinder collision tests.
87 08/21/10 Oleh Derevenko
88 * Fix applied to dxReallocateTemporayWorldProcessContext() to remove typo
89 which caused segmentation fault (by Kyle McKay).
90 dTestSolveLCP() fixed to avoid exceeding allocated memory pool
93 07/19/10 Oleh Derevenko
94 * Patch applied (#3030783) to fix drawstuff dimensions being ignored
95 in OSX GLUT port (by Danny Price).
98 * Applied patch #2991622: dGeomGetRelPointPos, dGeomGetPosRelPoint,
99 dGeomVectorToWorld, and dGeomVectorFromWorld.
101 07/16/10 Daniel K. O.
102 * Fixed bug #2937076: don't try to build demos if drawstuff is disabled.
104 05/02/10 Oleh Derevenko
105 * Missing extern "C" wrapper has been added to include/ode/export-dif.h
106 (reported by Danny Price). The change affects dWorldExportDIF() public
109 05/02/10 Oleh Derevenko
110 * Patch applied (#2995450) to generate up to four contacts for box-
111 plane collision test (by alexdu) and fix contact depths.
113 05/02/10 Oleh Derevenko
114 * dGeomLowLevelControl function added with ability to change/query OPCODE
115 trimesh-sphere contact merging behavior at runtime.
117 02/18/10 Daniel K. O.
118 * Fixed bug affecting disabled joints and dWorldStep.
120 01/16/10 Oleh Derevenko
121 * Patch applied (#2931174) to make demos work for recent MacOS.
122 * Patch applied (#2931177) to fix the demos' framerate on X11.
124 12/20/09 Oleh Derevenko
125 * QuadTreeSpace implementation corrected to avoid object-block relation
126 ambiguity due to numeric errors.
128 12/04/09 Oleh Derevenko
129 * odecpp classes changed to be inheritable and easily expandable
131 11/29/09 Oleh Derevenko
132 * Improvement for trimesh-plane collision (also used in trimesh-heightfield)
133 to exclude mesh vertices that have already generated contacts from further
134 examination and contact generation in other triangles (suggested by LR).
136 10/25/09 Oleh Derevenko
137 * Macros changed to static inline functions in odemath.h and related files.
138 Some code duplication has been eliminated across the files.
140 * Fixed handling of --disable-asserts and --enable-double-precision
141 (absence of --enable-double-precision) in configure script. The script
142 was not appending compiler defines correctly.
144 * dWorldStep implementation changed to remove allocation on stack.
145 dUSE_MALLOC_FOR_ALLOCA define has been removed as well as corresponding
146 configuration parameter. Also dMemoryFlag public variable has been removed.
147 (look for presence of ODE_EXT_malloc_not_alloca configuration string if
148 your application is dependent on that variable).
150 09/05/09 Oleh Derevenko
151 * dWorldStepFast1 API removed along with dWorld[Get/Set]AutoEnableDepthSF1
153 08/29/09 Oleh Derevenko
154 * Fixed uninitialized floating point array used in computations.
156 08/12/09 Oleh Derevenko
157 * A typo fixed in dGeomCopyOffsetRotation() (final_posr was used instead
158 of offset_posr). Reported by Tilmann.
160 08/11/09 Daniel K. O.
161 * Made sure neither dSINGLE or dDOUBLE is defined by default; the user
162 should always explicitly specify the precision.
164 06/27/09 Oleh Derevenko
165 * New functions have been added:
166 - dWorldUseSharedWorkingMemory
167 - dWorldCleanupWorkingMemory
168 - dWorldSetStepMemoryReservationPolicy
169 - dWorldSetStepMemoryManager
171 06/25/09 Remi Ricard (papaDoc)
172 * Add limit to the to the second axis of the universal joint
175 06/14/09 Oleh Derevenko
176 * dWorldQuickStep re-implemented to avoid memory allocation on stack.
177 Also several optimizations have been made to decrease memory
178 requirements and optimize algorithm implementation of dWorldQuickStep.
179 dWorldStep still remains with old memory allocation however new APIs
180 mentioned below are fully functional for it.
181 Both dWorldStep and dWorldQuickStep have been changed to return boolean
184 * dInitODE2() changed to automatically call
185 AllocateODEDataForThread(dAllocateFlagBasicData) after library
186 initialization as this is a required initialization minimum that
187 must always be performed anyway.
189 06/05/09 Daniel K. O.
190 * Removed aliasing issues from OPCODE/Ice, plus some other warnings.
191 Now it builds on gcc 4.3.2 with '-Wall -Werror -O3".
193 05/30/09 Oleh Derevenko
194 * A minor memory usage optimization for QuickStep.
196 05/24/09 Daniel K. O.
197 * Made the new trimesh collider the default.
198 * Added a "-texturepath" option to drawstuff.
200 05/18/09 Oleh Derevenko
201 * Heightfield rotation fixed to avoid NaNs while rotating infinite
204 05/03/09 Oleh Derevenko
205 * Incorrect parameter order fixed on contact merging in Sphere-Trimesh
206 collisions. The bug resulted in merged contact remaining with normal
207 of first contact found. Thanks to Dimitris Papavasiliou for reporting.
209 04/23/09 Daniel K. O.
210 * Fixed bug #2685170: use the C99 __func__ instead of __FUNCTION__ when
211 a C99 implementation is available.
213 04/07/09 Remi Ricard (papaDoc)
214 * Remove unused code in demo_joints.cpp, reported by Tilmann.
216 04/07/09 Remi Ricard (papaDoc)
217 * Fix bug in collision categories in demo_jointPU, reported by Tilmann
219 03/14/09 Oleh Derevenko
220 * A possibility to initialize/close ODE multiple times recursively has
222 Also, now a call to dSpaceSetManualCleanup() is required for each
223 space right after creation if ODE has been initialized in thread data
226 03/07/09 Oleh Derevenko
227 * Thread local data has been cleaned up from OPCODE and OdeTls as it is
228 not used (OPC_SweepAndPrune.* and OPC_BoxPruning.* have been removed
229 - rebuilding project files is necessary).
231 02/07/09 Daniel K. O.
232 * New house of cards demo, which stresses the friction handling stability.
234 01/29/09 Remi Ricard (papaDoc)
235 * Fix bug: Fix problem when attaching no body to a joint. Before calling
236 setRelativeValues a check is made for bodies.
239 01/28/09 Daniel K. O.
240 * Applied patch #2538046: Heightfield AABB bounds patch.
242 01/23/09 Remi Ricard (papaDoc)
243 * Add new function dJointSetUniversalAxis1Offset and dJointSetUniversalAxis2Offset
244 * Add unittest for those funcitons.
246 01/23/09 Remi Ricard (papaDoc)
247 * Fix problem with dJointGetUniversalAngle2 when the joint is attached to
248 only a body 2. The sign was inverted.
249 * Add unit test to verify for this problem
251 01/21/09 Remi Ricard (papaDoc)
252 * Fix bug reported by Tilman: dxJointPU::getInfo1 was setting twice the
253 limit of limot1 to zero and not limot2
255 01/17/09 Daniel K. O.
256 * Fixed a bug in dSpaceCollide2: if both geoms are not in spaces they would
257 not have valid AABBs.
259 12/20/08 Daniel K. O.
260 * New functions: dJointEnable, dJointDisable, dJointIsEnabled
263 12/19/08 Daniel K. O.
264 * Removed inline asm statements that break builds on 64-bit VC++.
266 12/09/08 Daniel K. O.
267 * Applied patch #2381592, which adds support for Kinematic Bodies.
269 12/06/08 Oleh Derevenko
271 * Applied a patch by Martijn Buijs to make GIMPACT trimesh-ray collisions to
272 be consistent with those in OPCODE.
273 * Swapped geometries returned in contacts for OPCODE Trimesh-Plane collisions
274 as they were returned in unnatural order being different from that in GIMPACT
275 * Applied a patch by Martijn Buijs to make side1, side2 fields of contact
276 structure be always initialized, either with -1 for non-trmesh geometries
277 or with triangle index for trimeshes. These fields were only assigned for
278 trimesh-trimesh collisions before.
279 * dGeomTriMeshSetTriMergeCallback/dGeomTriMeshGetTriMergeCallback API added
280 to set/get user defined callback procedure for trimeshes that would be
281 invoked when contacts are merged to let user code accumulate attributes of
282 original contact triangles and generate a fake index by which it would
283 later be able to determine those attributes. If the callback is not
284 assigned (the default) -1 is generated as triangle index for merged
285 contacts (there was an index of first of merged triangles before!!!).
286 The callback is currently used within OPCODE trimesh-sphere and OPCODE
287 new trimesh-trimesh collisions.
289 11/20/08 Remi Ricard (papaDoc)
290 * Fix problem with dJointGetPUPosition and
291 dJointGetPUPositionRate when the joint is attached to only
292 a body 2. The sign was inverted.
293 * Fix bug: When a pu joint had only one body attached to position 2,
294 dJointAttach(jId, 0, bId). The body was not push in the right direction to
295 move back between the limits.
296 * Add unit test to check the above problem
297 * Add the function void dJointSetPUAnchorOffset
298 * Make the function void dJointSetPUAnchorDelta deprecated
300 11/19/08 Remi Ricard (papaDoc)
301 * Fix bug: When a pr joint had only one body attached to position 2,
302 dJointAttach(jId, 0, bId). The body was not push in the right direction to
303 move back between the limits.
304 * Add unit test to check the above problem
306 11/19/08 Remi Ricard (papaDoc)
307 * Fix problem with dJointGetPRPosition and
308 dJointGetPRPositionRate when the joint is attached to only
309 a body 2. The sign was inverted.
310 * Add unit test to check the above problem
311 * Increase the tolerance to remove failure in unit test
312 * Remove compilation warning in unit test with the use of REAL()
314 11/18/08 Remi Ricard (papaDoc)
315 * Fix bug: When a piston joint had only one body attached to position 2,
316 dJointAttach(jId, 0, bId). The body was not push in the right direction to
317 move back between the limits.
318 * Add more functionality to demo_piston.cpp
319 * Run astyle on modified files.
321 11/18/08 Remi Ricard (papaDoc)
322 * Fix bug: When a slider joint had only one body attached to position 2,
323 dJointAttach(jId, 0, bId). The body was not push in the right direction to
324 move back between the limits.
326 10/29/08 Oleh_Derevenko
328 * Premake scripts changed to only include chosen collision library
329 sources in project on Windows. --all-collis-libs premake option
330 added to allow inclusion of all collision library sources into the
333 10/15/08 Remi Ricard (papaDoc)
334 * Applying patch #2158425 64-bit GIMPACT provided by Mark
335 William. This patch enable GIMPACT to works on 64-bit machine.
337 10/15/08 Remi Ricard (papaDoc)
338 * Add function dJointGetPRAngle and dJointGetPRAngleRate
340 10/15/08 Remi Ricard (papaDoc)
341 * Enable the motor on the rotoide part of the PR joint
343 10/15/08 Remi Ricard (papaDoc)
344 * Add unit test to check if using directly a joint
345 or using after setting with default values is the same.
346 * Add function setRelativeValues called in dJointAttach for
349 10/10/08 Remi Ricard (papaDoc)
350 * Fix bug in dJointGetPUAxis2. The axis was not multiplied with the
351 the rotation matrix of the good body.
352 * Fix bug if there is only one body on the PU joint the axis returned
353 was not the right one.
354 * Add unit test to verify previous bug.
356 10/03/08 Rodrigo Hernandez (Kwizatz)
357 * Added Blender script to create ODE convex geoms under tools.
359 10/01/08 Rodrigo Hernandez (Kwizatz)
360 * Convex-Convex collision detection code is finally stable.
362 08/31/08 Daniel K. O.
363 * Applied patch 2080674: Improved dBodySetRotation; now exact rotation
364 matrices are preserved until the next simulation step.
366 08/07/08 Daniel K. O.
367 * Fixed strict aliasing issue that was breaking the new trimesh collider.
369 07/24/08 Daniel K. O.
370 * New functions: dBodyGetGyroscopicMode and dBodySetGyroscopicMode
373 07/15/08 Remi Ricard (papaDoc)
374 * Add a new define ODE_API_DEPRECATED to mark function as deprecated
377 07/14/08 Remi Ricard (papaDoc)
378 * Finish adding patch 1336066: Joint feedback in quickstep by jsinecky
379 * demo_boxstack.cpp can now print joint feedback
381 07/11/08 Daniel K. O.
382 * Bumped version for 0.10.1
383 * Added proper usage of libtool's version info.
385 07/10/08 Remi Ricard (papaDoc)
386 * Add new function dJointSetPistonAnchorOffset
387 * Add unittest for the piston joint
388 * Fix problem with dJointGetPistonPosition and
389 dJointGetPistonPositionRate when the joint is attached to only
390 a body 2. The sign was inverted.
392 07/09/08 Remi Ricard (papaDoc)
393 * Optimize function Multiply1_12q1 in quickstep
394 Patch proposed by Riemer v.d. Zee and modified by Patrick Baggett
396 07/08/08 Remi Ricard (papaDoc)
397 * Update the slider joint to have the same behavior as the other joint
398 when there is only a body2 attached to it.
399 * Update documentation for the slider joint.
400 * Remove warning by using REAL()
401 * Add new unittest for dJointGetSliderPositionRate
403 07/08/08 Remi Ricard (papaDoc)
404 * Update unittest for the slider.
405 * Rename the new function dJointSetHingeAxisDelta to
406 dJointSetHingeAxisOffset. This remove will remove confusion with
407 the old function dJointSetHingeAnchorDelta
408 * Update documentation for the Hinge unittest
409 * Remove warning by using REAL()
411 07/07/08 Daniel K. O.
412 * Max Correcting Vel doesn't affect bounciness, as before.
414 07/03/08 Remi Ricard (papaDoc)
415 * Add new function dJointSetHingeAxisDelta
416 * Add unittest for this new function
418 06/17/08 Remi Ricard (papaDoc)
420 * Move the computation of the Relative Rotation for the slider joint
422 * Add unittest for to check qrel
424 06/17/08 Remi Ricard (papaDoc)
426 * Remove unused variables.
427 * Remove a conversion warning between unsigned int and int
429 06/17/08 Remi Ricard (papaDoc)
431 * Move the function hingeComputeRelativeRotation as a member of
432 the hinge structure/class.
434 06/17/08 Remi Ricard (papaDoc)
436 * Move the computation of the Relative Rotation for the fixed joint
439 06/16/08 Remi Ricard (papaDoc)
441 * Add testunit for the dxJointFixed
443 06/04/08 Daniel K. O.
445 * Moved joints to ode/src/joints, converted them to true virtual
448 06/02/08 Daniel K. O.
450 * Added an Auto<T> template to step.cpp to handle memory deallocation.
452 05/09/08 Daniel K. O.
454 * Applied patch #1335202: Contact Joint Motion (with some corrections),
455 and added demo_motion.
457 05/01/08 Oleh_Derevenko
459 * Memory leak in GIMPACT fixed (reported by Derek)
461 04/28/08 Oleh_Derevenko
463 * Added possibility to collide a space of lower sublevel as a geometry
464 against another space of a higher level with dSpaceCollide2.
465 dSpaceSetSublevel/dSpaceGetSublevel are used for sublevel assignment/
468 04/27/08 Oleh_Derevenko
470 * Fixed incorrect memory copying which could lead to memory corruption
471 in GIMPACT (luckily, in unused code)
472 * Fixed possible memory read beyond the end of allocated buffer along
473 with unnecessary extra memory copying in GIMPACT.
474 * Fixed buffer reserve being incorrectly reset to zero for bitsets
475 what resulted in unnecessary memory reallocations in GIMPACT.
476 * Implemented support for ability to run collision detection from
477 multiple threads for separate spaces.
479 04/14/08 Oleh_Derevenko
481 * Fixed possible memory corruption in new trimesh-trimesh collider
482 in case if two degenerated triangles are checked against each other.
484 04/12/08 Oleh_Derevenko
486 * Fixed sporadic assertion failure on vector normalization caused
487 by small triangles degenerating into segments during space
492 * Fix a bug in dJointXXXGetInfo. The value in limot.limit was not
493 always updated. (Ex: If hi and lo limit were changed).
497 * Added a new Joint: Prismatic Universal (patch #1828454).
501 * Fixed bug #1841309: collide2() method buggy.
505 * New function: dVector4Copy.
509 * Added stub calls for trimesh functions.
510 * Applied patch #1914232: dGetConfiguration.
511 * Applied patch #1655333: Optimize the function dNormalize3.
512 * New function: dSetColliderOverride.
513 * New function: dCheckConfiguration.
517 * Disabled building shared library by default with autotools.
521 * New function: dJointGetNumBodies (patch #1901550).
522 * New function: dSpaceGetClass (patch #1901637).
523 * Applied patch #1901649: Add missing function in the export
527 * Fixed drawstuff build issues on OSX.
529 01/12/08 Daniel K. O.
531 * Fixed a typedef bug in configure.in.
532 * Added dCylinder to the C++ wrappers.
533 * Applied patch 1851394: support for GIMPACT with double precision,
535 * Moved bunny geometry to bunny_geom.h.
537 12/11/07 Daniel K. O.
539 * Added damping and MaxAngularVel() functions.
540 * Const-correctness: added const qualifier to some dWorldGet and dBodyGet
542 * Updated the odecpp.h header.
544 12/07/07 Daniel K. O.
546 * Removed most of the compiler warnings from Drawstuff, ODE and
548 * Upgraded automake requirement to 1.10, and change some Makefile.am
552 * Modified autotools to use libtool for
553 library generation and administration
554 * Removed release and debug flags for configure.in
555 CPPFLAGS, CFLAGS, CXXFLAGS should be set by the
556 user to their liking, respecting autotools policies.
558 11/30/07 Daniel K. O.
559 * Applied patch 1813079 (moved callback)
560 * Replaced moveAndRotateBody by dxStepBody in stepfast.cpp
564 * Added 'Sweep and Prune' collision space.
565 * New Piston joint type with demo, by Remi Ricard
566 * Added build option to use 16-bit indices for OPCODE trimesh
570 * Integrated Christoph Beyer's average based sampling system for body
573 10/26/06 Francisco Leon
575 * Totally refactored trimesh collision system.
576 Using GIMPACT instead of OPCODE. Now works correctly, and faster.
577 Visit http://gimpact.sourceforge.net.
579 * Finally, test_moving_trimesh.exe works nicely.
581 * Fixed autodisable system. Now is possible to set bigger sleeping
582 threshold values and objects won't be sleeping on the air. They will
583 rest on the floor properly.
585 * dInitODE function added.
587 * Is Obligatory to call dInitODE() at the beginning for initialize ODE,
588 and calling dCloseODE() when the program ends.
592 * Fixed two bugs in cyl/plane collision test.
596 * New Rotoide - Prismatic joint type
597 * dJointGetUniversalAngles for efficient angle retrieval.
601 * Integrated plane2d joint type which constrains bodies to z == 0.
605 * Added heightfield primitive collision code. Simple test available in
606 ode/test/test_heightfield
610 * Added Convex primitive collision code,
611 currently only convex-sphere and convex-plane work
615 * Added program to test trimesh vs sphere: ode/test/test_basket
619 * Added new autogenerated Visual Studio projects, with Premake scripts
623 * Added plane/cyl intersection test
624 * Renamed CCylinder to Capsule
628 * Added support for geom offsets.
632 * Removed LIBTOOL from autotools since it was not really required.
633 * Added a target to build ODE as a shared library, this shared
634 library gets build alongside the static one, no flags required.
638 (Backported patches from STABLE branch, applied by Adam)
640 * dRandInt changed for a non-double all-int version.
641 * mics minor fixes and improvements.
645 * Fixed segmentation fault with OPCODE on 64 bits systems.
649 * Fixed timer.cpp compiler error on x86-64 using GCC.
653 * Added trimesh preprocessing to mark unneeded edges and verts. Also
654 added support for preprocessed info to the ccylinder-trimesh
659 * Important AMotors bugfix
663 * Assorted small bugfixes and tweaks for
664 trimesh_{box,ccylinder,trimesh} collisions
668 * added functions to joint.cpp to allow joint attachment to moving
671 * added malloc-based memory allocation in step.cpp & lcp.cpp (turned
672 on with a #define switch in common.h)
676 * added joint feedback to the QuickStep solver
680 * added warm starting to the QuickStep solver
684 * added the QuickStep solver
686 * added contact parameter functions.
690 * use dRandInt instead of rand() in stepfast.
694 * added auto-disable support from Aras Pranckevicius (with
695 modifications by russ). this useful feature can speed up
696 simulation significantly in some cases.
698 * various internal tidyups.
702 * changed the meaning of the 'index' argument to dJointGetBody():
703 it was the only remaining API function that does not respect
704 dJOINT_REVERSE (spotted by Matthew D. Hancher).
706 * updated the C++ headers: fixed two minor bugs and added
707 support for dQuadTreeSpace, dRay, and the dGeom::getSpace() method
708 (from Matthew D. Hancher).
712 * changed the way that the dInfinity constant is implemented: now it
713 is #defined to be one of: FLT_MAX, DBL_MAX, HUGE_VAL, HUGE_VALF, or
714 a large numeric constant. previously it was a variable that was
715 exported from the library. this simplifies the configuration and
716 build process quite a bit, especially in the case of DLLs.
718 * removed the old, deprecated collision system (geom.cpp,space.cpp,
719 geom.h,space.h,odecpp_old_collision.h). the ODE_OLD_COLLISION
720 configuration setting no longer has any meaning.
722 * removed support for dGeomGroups, which have been deprecated for
723 a while and are equivalent to 'spaces' anyway.
727 * bug fix in dMassSetCappedCylinder(), from Matthew D. Hancher.
731 * added trimesh-CCylinder capability, from Vadim Macagon
732 <vadim_mcagon@hotmail.com>.
736 * yet another rewrite of triangle-box collision code, this
737 time based on code donated by Croteam, ported by asko@jetti.org
738 and tweaked by Erwin.
742 * merged trimesh-trimesh collision code by
743 Jeffrey Smith <jeffreys@Softimage.com>.
745 * changed it to not break the trimesh interface, fix
746 some GCC compilation problems, bring it up to date with
747 ODE changes from 2003-11-15 -> 2004-04-04.
749 * add ability to drop meshes on meshes in test_moving_trimesh,
750 not as good as it could be but it's illustrative.
754 * implement a bunch of ultra-simple TriMesh functions that were
755 in the headers but not in the code -- patch by
756 Vadim Macagon <vadim_mcagon@hotmail.com>
758 * disable temporal coherence on trimeshes by default, since
759 it has scaleability issues that don't make it a general clear win.
763 * implement dxHashSpace::collide2(), not particularly efficiently.
767 * applied several Trimesh fixes and improvements from
768 Aras Pranckevicius <nearaz@interamotion.com>
772 * apply Nguyen Binh's work for removing many dSetZero() calls
773 and some other extraneous initializations.
777 * added dJointAdd*Torque/Force().
781 * added the StepFast code, by David Whittaker.
785 * added dMassSet*Total().
789 * added joint limits and motors to universal joints.
791 * reversed the polarity of the dJOINT_REVERSE flag.
795 * added the TriMesh geom class and the quad tree space to the ODE
796 core. both of these were developed by Erwin de Vries. added OPCODE
797 to the ODE distribution, this is required by TriMesh.
801 * added dGeomSetQuaternion() and dGeomGetQuaternion()
803 * added dJointGet*Anchor2()
807 * added dGeomGetSpace().
811 * added dMassSetCylinder().
815 * added dAreConnectedExcluding().
819 * added the ray geom class.
821 * added the dGeomXXXPointDepth() functions.
823 * added a collision test infrastructure, and some more tests.
827 * added support for multiple box-box contacts.
831 * added new collision system. select between the old/new system by
832 setting the ODE_OLD_COLLISION variable in config/user-settings.
836 * fixed two problems in the LCP code to improve the reliability of
837 the dContactApprox1 contact mode.
839 * added a FAQ question about rolling bodies getting stuck when they
844 * added dClosestLineSegmentPoints().
845 * implemented dCollideCB().
849 * added dJointSetFeedback() and dJointGetFeedback().
853 * added dGeomTransformSetInfo() and dGeomTransformGetInfo().
857 * added dBodySetForce(), dBodySetTorque(), dWorldImpulseToForce(),
858 dBodyGetPosRelPoint(), dBodyGetPosRelPoint(), dBodyVectorToWorld(),
859 dBodyVectorFromWorld().
861 * added dBodyGetPointVel() (thanks to Colin Reed).
863 * added a new C++ interface (from Martin C. Martin, with modifications
864 by russ). the old C++ interface is now in odecpp_old.h.
868 * added an additional BSD-style licensing option for ODE.
872 * added dCloseODE(), contributed by Nate Waddoups and David McClurg.
876 * added dSpaceQuery(), contributed by Nate Waddoups.
880 * added a section to the documentation for universal joints.
881 this includes a picture of the joint.
885 * added a universal joint class (generously contributed by
886 Martin C. Martin). it doesn't (yet) have a motor or joint limits,
887 but it does come with tests.
891 * makefile changes to accomodate OSs with command line length
892 limitations (thanks to Norman Lin).
896 * added the dBodySetGravityMode() and dBodyGetGravityMode()
897 functions, which change the dxBodyNoGravity body flag.
899 * added support for building a DLL with MSVC - there is now a
900 msvc-dll target. thanks to Norman Lin for doing this.
904 * added the dParamCFM joint parameter.
908 * reworked the build system to make it more cross-platform.
909 there is now a single top-level makefile and a configurator.c
910 program. see the INSTALL file for details.
914 * the "angular motor" joint has been completed, and a new section
915 has been added to the documentation.
919 * added a new joint type: "angular motor". using this joint is a good
920 way to get ball-joint motors and limits. this is work in progress -
921 it has not been fully implemented or tested yet.
925 * replaced the mmap()-based joint group stack (stack.cpp) with a
926 malloc()-based arena stack (obstack.cpp). this will be more
927 portable and should not impact performance.
931 * changed the meaning of the 'flags' parameter to dCollide() and
932 related functions: now the size of the contact buffer is kept in
933 the lower 16 bits. this change will be backward compatible.
935 * added dBodyGetFiniteRotationMode() and dBodyGetFiniteRotationAxis().
937 * added dBodyAddForceAtRelPos() function.
941 * added the ability to manually enable and disable bodies.
942 see dBodyEnable(), dBodyDisable(), dBodyIsEnabled().
944 * fixed a potential bug: when a world is destroyed that contains
945 joints in joint groups, those joints are marked as "deactivated" in
946 the joint group, so when the joint group is destroyed they can be
949 * the test_boxstack demo has new options to enable and disable bodies.
951 * new configuration parameter in config.h: dEFFICIENT_SIZE.
955 * started the change log for ODE. changes older than today were added
956 to this file by inspecting the CVS logs.
960 * added REAL() constructions for floating point numbers, to prevent
961 many warnings when compiling under VC++.
965 * added geometry transform class, documented composite objects.
967 * added collision rule: no contacts if both geoms on the same body.
968 this is not the best rule, may have to remove this in the future.
970 * new dMassAdd() function.
972 * capped cylinder to capped cylinder collision function.
976 * increase CFM in some demos to make them more robust.
980 * added new accessor functions.
984 * added the dJOINT_TWOBODIES flag to the joint, that says it can not
985 be attached to just one body.
989 * fixed a collision bug in dCollide() that was causing memory
990 corruption when multiple contacts were being returned.
994 * joints can now return m=0 to be "inactive". added a "null" joint
999 * in the LCP solver, try to fail gracefully when s <= 0.
1001 * dAABBTestFn() API change.
1005 * fixed a contact swapping bug in dCollide().
1009 * added capped cylinder geometry object.
1013 * the test_buggy demo now uses geometry groups.
1015 * added a dAABBTestFn field in the geometry classes.
1019 * added geometry groups.
1023 * added finite rotation stuff.