2.11 bug

kend
Posts: 11
Joined: Thu May 04, 2006 8:36 pm

2.11 bug

Post by kend »

After all the big changes to Bullet lately I thought it was about time I update to the latest version before I get too far behind. I came across a small bug though.

In btOptimizedBvh::~btOptimizedBvh() the delete should be an array delete.

delete[] m_contiguousNodes;


Also, can we get a getW() method in btQuadWord. I need it to deal with quaternions.

Other than that, this version is definitely more cleaned up than the last I used. 1.5 I think...

Ken D
User avatar
Erwin Coumans
Site Admin
Posts: 4221
Joined: Sun Jun 26, 2005 6:43 pm
Location: California, USA

Re: 2.11 bug

Post by Erwin Coumans »

kend wrote:After all the big changes to Bullet lately I thought it was about time I update to the latest version before I get too far behind. I came across a small bug though.

In btOptimizedBvh::~btOptimizedBvh() the delete should be an array delete.

delete[] m_contiguousNodes;


Also, can we get a getW() method in btQuadWord. I need it to deal with quaternions.

Other than that, this version is definitely more cleaned up than the last I used. 1.5 I think...

Ken D
Just fixed the bug in deletion of m_contiguousNodes, it is in the Bullet 2.12 release. The getW() was added yesterday, so that's sorted too.

Thank a lot for the feedback.
Bullet 2.12 is just released today, and includes other fixes/improvements too.

Erwin