Example #1
0
    public static void Rotate12(SMat3 vtav, Mat3 v)
    {
        if (vtav.m12 == 0)
        {
            return;
        }

        double c = 0, s = 0;

        Schur2.Rot12(vtav, c, s);
        Givens.Rot12Post(v, c, s);
    }