Rot12() 공개 메소드

public Rot12 ( float &c, float &s ) : void
c float
s float
리턴 void
예제 #1
0
파일: SVD.cs 프로젝트: CaveLab/isosurface
        public static void Rotate12(ref SMat3 vtav, ref Mat3 v)
        {
            if (vtav.m12 == 0)
            {
                return;
            }

            float c = 0, s = 0;

            vtav.Rot12(c, s);
            v.Rot12_post(c, s);
        }
예제 #2
0
파일: SVD.cs 프로젝트: Lin20/isosurface
        public static void Rotate12(ref SMat3 vtav, ref Mat3 v)
        {
            if (vtav.m12 == 0)
                return;

            float c = 0, s = 0;
            vtav.Rot12(ref c, ref s);
            c = 0; s = 0;
            v.Rot12_post(c, s);
        }