BulletSharpPInvoke icon indicating copy to clipboard operation
BulletSharpPInvoke copied to clipboard

libbulletc build issue (double precision branch)

Open gitapat opened this issue 4 years ago • 1 comments

Hello!

I got this error when trying to build: 'getConstraintType': is not a member of 'btMultiBodyConstraint' libbulletc K:\dev\BulletSharpPInvoke-double-precision\libbulletc\src\btMultiBodyConstraint_wrap.cpp 34

Its this function:

int btMultiBodyConstraint_getConstraintType(btMultiBodyConstraint* obj) { return obj->getConstraintType(); }

For now I've instead just returned 0 to get the build continue, I'm using bullet 2.89. Any idea why its missing?

gitapat avatar Aug 28 '20 14:08 gitapat

getConstraintType was added here: https://github.com/bulletphysics/bullet3/commit/c517c434e6e017d131ba3ad97ce4ec317226a2b7

I try to keep the double precision up to date with Bullet's master branch. It doesn't always follow the release versions.

AndresTraks avatar Aug 28 '20 23:08 AndresTraks