CgExamples.Gl_14_bulge.SWAP_ROWS C# (CSharp) Method

SWAP_ROWS() static private method

Change Rows means in this case just change the Refrences to the Arrays
static private SWAP_ROWS ( double &a, double &b ) : void
a double
b double
return void
        static void SWAP_ROWS(ref double[] a, ref double[] b)
        {
            double[] temp = a;
            a = b;
            b = temp;
        }