Rot01() 공개 메소드

public Rot01 ( float &c, float &s ) : void
c float
s float
리턴 void
예제 #1
0
        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);
        }