Rot01() public method

public Rot01 ( float &c, float &s ) : void
c float
s float
return void
コード例 #1
0
ファイル: SVD.cs プロジェクト: chongbingbao/isosurface
        public static void Rotate01(ref SMat3 vtav, ref Mat3 v)
        {
            if (vtav.m01 == 0)
                return;

            float c = 0, s = 0;
            vtav.Rot01(c, s);
            v.Rot01_post(c, s);
        }
コード例 #2
0
ファイル: SVD.cs プロジェクト: CaveLab/isosurface
        public static void Rotate01(ref SMat3 vtav, ref Mat3 v)
        {
            if (vtav.m01 == 0)
            {
                return;
            }

            float c = 0, s = 0;

            vtav.Rot01(c, s);
            v.Rot01_post(c, s);
        }