Rot02() public method

public Rot02 ( float &c, float &s ) : void
c float
s float
return void
Example #1
0
        public static void Rotate02(ref SMat3 vtav, ref Mat3 v)
        {
            if (vtav.m02 == 0)
                return;

            float c = 0, s = 0;
            vtav.Rot02(c, s);
            v.Rot02_post(c, s);
        }
Example #2
0
        public static void Rotate02(ref SMat3 vtav, ref Mat3 v)
        {
            if (vtav.m02 == 0)
            {
                return;
            }

            float c = 0, s = 0;

            vtav.Rot02(c, s);
            v.Rot02_post(c, s);
        }