コード例 #1
0
ファイル: ShapeTemplate.cs プロジェクト: ChrisMoreton/Test3
		private void rotatePath(PathData data, GraphicsPath path, float rotationAngle)
		{
			if (rotationAngle != 0)
			{
				Matrix rotation = new Matrix();
				rotation.RotateAt(rotationAngle,
					Utilities.getCenter(data.getBounds()));
				path.Transform(rotation);
				rotation.Dispose();
			}
		}