SetRotationY() 공개 메소드

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

            matrix.SetRotationY(rad, t);

            return(matrix);
        }
예제 #2
0
        public static Matrix34 CreateRotationY(float rad, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();
            matrix.SetRotationY(rad, t);

            return matrix;
        }