RotateZ() public method

Z 軸を中心に回転する行列を求める。
public RotateZ ( double theta ) : void
theta double 回転角
return void
Ejemplo n.º 1
0
        public static Matrix GetRotateZ(double theta)
        {
            Matrix a = new Matrix();

            a.RotateZ(theta);
            return(a);
        }
Ejemplo n.º 2
0
		public static Matrix GetRotateZ(double theta)
		{
			Matrix a = new Matrix();
			a.RotateZ(theta);
			return a;
		}