set method
void
set()
Set result data.
Implementation
void set(
Vector3 rayFromWorld,
Vector3 rayToWorld,
Vector3 hitNormalWorld,
Vector3 hitPointWorld,
Shape shape,
Body body,
double distance
){
this.rayFromWorld.setFrom(rayFromWorld);
this.rayToWorld.setFrom(rayToWorld);
this.hitNormalWorld.setFrom(hitNormalWorld);
this.hitPointWorld.setFrom(hitPointWorld);
this.shape = shape;
this.body = body;
this.distance = distance;
}