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