public class RayCastResult
extends java.lang.Object
Constructor and Description |
---|
RayCastResult()
Creates an "empty" RayCastResult (i.e. no collisions).
|
RayCastResult(int type,
int info,
float distance,
Vector3f collisionPoint,
Vector3f collisionNormal,
Vector3f elementPosition,
short elementTypeID) |
Modifier and Type | Method and Description |
---|---|
int |
getCollisionInfo()
Gets the collision info id.
|
Vector3f |
getCollisionNormal()
Gets the collision normal, i.e. the normal of the surface the ray hit.
|
java.lang.Object |
getCollisionObject()
Gets the collision object, i.e. the object the ray collided with.
|
Vector3f |
getCollisionPoint()
Gets the collision point, i.e. the location where the ray hit an object.
|
int |
getCollisionType()
Gets the collision type.
|
float |
getDistance()
Gets the distance between the player (or more precisely, the origin of the
ray) and the collision point.
|
Vector3f |
getElementPosition()
Gets the actual world position of the element.
|
short |
getElementTypeID()
Gets the element type id (of the element the ray collided with).
|
boolean |
hasCollision()
Gets whether or not a collision occurred.
|
java.lang.String |
toString()
Gets a String representation of this RayCastResult.
|
public RayCastResult()
public boolean hasCollision()
RayCastResult
object (i.e. the callback result would be null).public int getCollisionType()
CollisionType
public java.lang.Object getCollisionObject()
getCollisionType()
first).public int getCollisionInfo()
public Vector3f getCollisionPoint()
getElementPosition()
Vector3f
, or null if no
collision occurred.public Vector3f getCollisionNormal()
Vector3f
, or null
if no collision occurred.public Vector3f getElementPosition()
getCollisionPoint()
only returns the point where the ray hit the
object). Having the actual element position allows you to get more information
about the particular object.getElementTypeID()
public short getElementTypeID()
getElementPosition()
public float getDistance()
Float.MAX_VALUE
if no collision
occurred.public java.lang.String toString()
toString
in class java.lang.Object