Rot02_post() public method

public Rot02_post ( float c, float s ) : void
c float
s float
return void
示例#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);
        }
示例#2
0
文件: SVD.cs 项目: CaveLab/isosurface
        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);
        }