Axiom.Math.Ray.this C# (CSharp) Method

this() public method

Gets the position of a point t units along the ray.
public this ( Real t ) : Vector3
t Real
return Vector3
		public Vector3 this[ Real t ]
		{
			get
			{
				return origin + ( direction * t );
			}
		}