SetRotationAA() 공개 메소드

public SetRotationAA ( Vec3 rot, Vec3 t = default(Vec3) ) : void
rot Vec3
t Vec3
리턴 void
예제 #1
0
파일: Matrix.cs 프로젝트: BenChung/CryMono
        public static Matrix34 CreateRotationAA(float c, float s, Vec3 axis, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();

            matrix.SetRotationAA(c, s, axis, t);

            return(matrix);
        }
예제 #2
0
파일: Matrix.cs 프로젝트: BenChung/CryMono
        public static Matrix34 CreateRotationAA(Vec3 rot, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();

            matrix.SetRotationAA(rot, t);

            return(matrix);
        }
예제 #3
0
        public static Matrix34 CreateRotationAA(float c, float s, Vec3 axis, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();
            matrix.SetRotationAA(c, s, axis, t);

            return matrix;
        }
예제 #4
0
        public static Matrix34 CreateRotationAA(Vec3 rot, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();
            matrix.SetRotationAA(rot, t);

            return matrix;
        }