RotateX() public method

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

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