mtInertia.Picture.GetTrasformationMatrix C# (CSharp) 메소드

GetTrasformationMatrix() 개인적인 메소드

private GetTrasformationMatrix ( ) : Matrix
리턴 Matrix
        private Matrix GetTrasformationMatrix()
        {
            Matrix matrix = new Matrix();
            matrix.RotateAt(Angle, new PointF(ScalingFactor.Width * Width / 2, ScalingFactor.Height * Height / 2));
            matrix.Scale(ScalingFactor.Width * WidthFactor, ScalingFactor.Height * HeightFactor, MatrixOrder.Prepend);
            
            return matrix;
        }