Skip to content

Commit

Permalink
update the Libbulletjme library to v20.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Mar 19, 2024
1 parent 73aa497 commit 46182c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MinieLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
ext {
// The URL from which native libraries should be copied:

libbulletjmeUrl = 'https://github.com/stephengold/Libbulletjme/releases/download/20.1.0/'
libbulletjmeUrl = 'https://github.com/stephengold/Libbulletjme/releases/download/20.2.0/'
//libbulletjmeUrl = 'file:///home/sgold/NetBeansProjects/Libbulletjme/dist/' // to test a local build
//libbulletjmeUrl = 'file:///c:\\users\\sgold\\My%20Documents\\NetBeansProjects\\Libbulletjme\\dist\\' // to test a local build

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ final public class NativeLibrary {
/**
* expected version string of the native library
*/
final public static String expectedVersion = "20.1.0";
final public static String expectedVersion = "20.2.0";
// *************************************************************************
// constructors

Expand Down
3 changes: 3 additions & 0 deletions MinieLibrary/src/main/java/vhacd4/Vhacd4Parameters.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public Vhacd4Parameters() {
super.setNativeId(objectId);

setMaxNumVerticesPerCH(objectId, 32);
setMaxRecursion(14);
setResolution(objectId, 100_000);
}
// *************************************************************************
Expand Down Expand Up @@ -331,6 +332,8 @@ public void setMaxHulls(int limit) {

/**
* Alter the maximum recursion depth (native field: m_maxRecursionDepth).
* <p>
* Note: the native default is 10.
*
* @param depth default = 14, min = 2, max = 64
*/
Expand Down

0 comments on commit 46182c0

Please sign in to comment.