AndresTraks / BulletSharpPInvoke

.NET wrapper for the Bullet physics library using Platform Invoke

Home Page:http://andrestraks.github.io/BulletSharp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

libbulletc build issue (double precision branch)

gitapat opened this issue · 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?

getConstraintType was added here: bulletphysics/bullet3@c517c43

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