RotateY() 공개 메소드

Y 軸を中心に回転する行列を求める。
public RotateY ( double theta ) : void
theta double 回転角
리턴 void
예제 #1
0
        public static Matrix GetRotateY(double theta)
        {
            Matrix a = new Matrix();

            a.RotateY(theta);
            return(a);
        }
예제 #2
0
파일: Matrix.cs 프로젝트: ufcpp/UfcppSample
		public static Matrix GetRotateY(double theta)
		{
			Matrix a = new Matrix();
			a.RotateY(theta);
			return a;
		}