NewTOAPIA.float3x3.Col C# (CSharp) Method

Col() public method

public Col ( int i ) : float3
i int
return float3
        public float3 Col(int i)
        {
            switch (i)
            {
                case 0:
                    return new float3(M11, M21, M31);
                case 1:
                    return new float3(M12, M22, M32);
                case 2:
                    return new float3(M13, M23, M33);
                default:
                    return new float3(0, 0, 0);
            }
        }