C# Class BEPUutilities.RayHit

Contains ray hit data.
Show file Open project: Indiefreaks/igf Class Usage Examples

Public Properties

Property Type Description
Location Microsoft.Xna.Framework.Vector3
Normal Microsoft.Xna.Framework.Vector3
T float

Property Details

Location public property

Location of the ray hit.
public Vector3,Microsoft.Xna.Framework Location
return Microsoft.Xna.Framework.Vector3

Normal public property

Normal of the ray hit.
public Vector3,Microsoft.Xna.Framework Normal
return Microsoft.Xna.Framework.Vector3

T public property

T parameter of the ray hit. The ray hit location is equal to the ray origin added to the ray direction multiplied by T.
public float T
return float