Axiom.Math.Ray.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

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

Same methods

Ray::operator ( ) : bool