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;
}
}
|