Last-Modified: Tue, 14 Jul 2026 12:05:12 GMT Expires: Fri, 11 Jul 2036 12:05:12 GMT AXmlDocument.cs « Xml « Tango.Scripting.Editors « Scripting « Visual_Studio « Software - Tango - Twine softwares
aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Xml/AXmlDocument.cs
blob: f96c50ca453a9e2c0d6143549954e5c661988654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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 Tango.Scripting.Editors.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;
	}
}