Universe.Physics.ConvexDecompositionDotNet.int3.this C# (CSharp) Method

this() public method

public this ( int i ) : int
i int
return int
        public int this[int i]
        {
            get
            {
                switch (i)
                {
                    case 0: return x;
                    case 1: return y;
                    case 2: return z;
                }
                throw new ArgumentOutOfRangeException();
            }
            set
            {
                switch (i)
                {
                    case 0: x = value; return;
                    case 1: y = value; return;
                    case 2: z = value; return;
                }
                throw new ArgumentOutOfRangeException();
            }
        }