Axiom.Math.Ray.operator C# (CSharp) Méthode

operator() public static méthode

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

Same methods

Ray::operator ( ) : bool