[JBullet] Definition of a ray

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

Bullet and JBullet use the start and end position for a ray segment.

You can search for testRay. Not sure if this has been ported to jBullet already.
Erwin

Ah, cool. So it is very cheap to calculate the direction vector from these two values. Thanks for the clarification.

Marvin