aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/ICSharpCode.AvalonEdit/Utils/Constants.cs
blob: 0ee2369d3e87e850b93373f53e210e3184915703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)

using System;

namespace ICSharpCode.AvalonEdit.Utils
{
	static class Constants
	{
		/// <summary>
		/// Multiply with this constant to convert from points to device-independent pixels.
		/// </summary>
		public const double PixelPerPoint = 4 / 3.0;
	}
}