PSSMDemo.RayHelper.GetPoint C# (CSharp) Method

GetPoint() public static method

レイの始点からレイに沿って指定のサイズにある点を取得します。
public static GetPoint ( Microsoft.Xna.Framework.Ray &ray, float size ) : Vector3
ray Microsoft.Xna.Framework.Ray レイ。
size float サイズ。
return Vector3
        public static Vector3 GetPoint(ref Ray ray, float size)
        {
            Vector3 result;
            GetPoint(ref ray, size, out result);
            return result;
        }

Same methods

RayHelper::GetPoint ( Microsoft.Xna.Framework.Ray &ray, float size, Vector3 &result ) : void
RayHelper