File tree Expand file tree Collapse file tree
src/main/java/jme3utilities/minie Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# release notes for the Minie library and related examples
22
3+ ## Version 0.7.6 released on TBD
4+
5+ + Fixed a bug where ` attachmentMass() ` could return an outdated value.
6+ + Improved the performance of volume calculations for hull and multi-sphere
7+ shapes.
8+ + Various API changes in ` RagUtils ` .
9+ + Added a ` MultiSphere ` constructor for a 2-sphere shape, based
10+ on a ` RectangularSolid ` .
11+ + Added ` boundingBox() ` methods for collision shapes and collision objects.
12+ + Added ` countRigidBodies() ` and ` getPcoLists() ` methods to the
13+ ` PhysicsSpace ` class.
14+ + Added a ` density() ` method to the ` PhysicsLink ` class.
15+ + Added a ` HullCollisionShape ` constructor based on a ` FloatBuffer ` .
16+ + Added a ` TwoSphere ` heuristic for generating ` PhysicsLink ` shapes.
17+ + Added a ` VectorSet ` abstract class with 2 implementations.
18+ + Updated the native libraries to version 1.0.40 of ` Libbulletjme ` .
19+
320## Version 0.7.5 released on 19 March 2019
421
5- + Added a ` DumpFlags ` enum and used it to simplify the API
22+ + Added a ` DumpFlags ` enum and used it to simplify the API
623 of ` PhysicsDumper ` . (API change)
724 + Added a ` DumpFlag ` to disable dumping collision objects in physics spaces.
825 + Added a ` getSpatial() ` method to the ` VehicleControl ` class.
Original file line number Diff line number Diff line change @@ -59,6 +59,6 @@ private MinieVersion() {
5959 * @return branch and revision (not null, not empty)
6060 */
6161 public static String versionShort () {
62- return "master 0.7.5+1 " ;
62+ return "master 0.7.6 " ;
6363 }
6464}
Original file line number Diff line number Diff line change @@ -271,15 +271,15 @@ repository location:
271271 jcenter()
272272 }
273273 dependencies {
274- compile 'jme3utilities:Minie:0.7.5 '
274+ compile 'jme3utilities:Minie:0.7.6 '
275275 }
276276
277277#### For Ant projects
278278
279279For projects built using Ant, download the 2 non-standard
280280libraries from GitHub:
281281
282- + https://github.com/stephengold/Minie/releases/tag/0.7.5
282+ + https://github.com/stephengold/Minie/releases/tag/0.7.6
283283 + https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.23.0
284284
285285You'll want both class JARs
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ gradle.projectsEvaluated {
3232ext {
3333 // current versions of the libraries
3434 jmonkeyengineVersion = ' 3.2.3-stable'
35- minieVersion = ' 0.7.5 '
35+ minieVersion = ' 0.7.6 '
3636}
3737
3838repositories {
You can’t perform that action at this time.
0 commit comments