How is a ray defined in JBullet? I’m asking, because I’m searching for the best way to define a ray in my abstraction layer. I would prefer to define it by its origin and direction. But in ODE/OdeJava/JOODE it is defined by its origin and length only and is assumed to point into positive-z-direction, which is then transformed by its rotation. It is quite expensive to calculate the rotation from a direction vector (or is there a cheap solution?). So it wouldn’t be a good idea to use origin/direction in my abstraction, if JBullet uses this design, too. But if JBullet uses origin/direction, I would use this in my abstraction to have the best performance with JBullet as the underlying library and a little less performance with ODEJava/JOODE.
Marvin