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

        double c = 0, s = 0;

        Schur2.Rot02(vtav, c, s);
        Givens.Rot02Post(v, c, s);
    }