RotateY() public method

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

            a.RotateY(theta);
            return(a);
        }
示例#2
0
		public static Matrix GetRotateY(double theta)
		{
			Matrix a = new Matrix();
			a.RotateY(theta);
			return a;
		}