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

operator() public static method

Gets the position of a point t units along the ray.
public static operator ( ) : Vector3
return Vector3
		public static Vector3 operator *( Ray ray, Real t )
		{
			return ray.origin + ( ray.direction * t );
		}

Same methods

Ray::operator ( ) : bool