fasiy / rokon

Automatically exported from code.google.com/p/rokon
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Bug: Box2d implementation, error in PrismaticJointDef > initialize #121

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The current method completely ignores its last parameter "Vector2 axis". After 
analyzing the original Box2d-sources the line 

localAxis1.set(bodyA.getLocalVector( anchor ));

should read

localAxis1.set(bodyA.getLocalVector( axis ));

which fixes some completely weird behaviour...

What version of Rokon are you using?
=> 2.0.3

On which version of Android are you experiencing this?
=> Emulator on 2.2 but should affect any version

Please provide any additional information below.

Original issue reported on code.google.com by dirk.lu...@gmail.com on 19 Jul 2010 at 2:04

GoogleCodeExporter commented 8 years ago
Well spotted, thanks.

I've passed this on to Mario at libgdx too

Original comment by rtaylor205@gmail.com on 25 Jul 2010 at 9:36