blob: 0344ada8085a4c8958e5c1982709864b19930d11 (
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 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;
}
}
|