File: DoubleUtil.cs

package info (click to toggle)
pdfmod 0.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 5,196 kB
  • ctags: 9,346
  • sloc: cs: 50,590; xml: 1,177; sh: 709; makefile: 640
file content (198 lines) | stat: -rw-r--r-- 7,034 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#region PDFsharp - A .NET library for processing PDF
//
// Authors:
//   Stefan Lange (mailto:Stefan.Lange@pdfsharp.com)
//
// Copyright (c) 2005-2008 empira Software GmbH, Cologne (Germany)
//
// http://www.pdfsharp.com
// http://sourceforge.net/projects/pdfsharp
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
// DEALINGS IN THE SOFTWARE.
#endregion

using System;
using System.Runtime.InteropServices;
using PdfSharp.Drawing;

namespace PdfSharp.Internal
{
  /// <summary>
  /// Some floating point utilities. Partially reflected from WPF, later equalized with original source code.
  /// </summary>
  internal static class DoubleUtil
  {
    internal const double Epsilon = 2.2204460492503131E-16; // smallest such that 1.0 + Epsilon != 1.0
    internal const float FloatMinimum = 1.175494E-38f;

    /// <summary>
    /// Indicates whether the values are so close that they can be considered as equal.
    /// </summary>
    public static bool AreClose(double value1, double value2)
    {
      if (value1 == value2)
        return true;
      // This computes (|value1-value2| / (|value1| + |value2| + 10.0)) < Epsilon 
      double eps = (Math.Abs(value1) + Math.Abs(value2) + 10.0) * Epsilon;
      double delta = value1 - value2;
      return (-eps < delta) && (eps > delta);
    }

    /// <summary>
    /// Indicates whether the values are so close that they can be considered as equal.
    /// </summary>
    public static bool AreRoughlyEqual(double value1, double value2, int decimalPlace)
    {
      if (value1 == value2)
        return true;
      return Math.Abs(value1 - value2) < decs[decimalPlace];
    }
    static double[] decs = new double[] { 1, 1E-1, 1E-2, 1E-3, 1E-4, 1E-5, 1E-6, 1E-7, 1E-8, 1E-9, 1E-10, 1E-11, 1E-12, 1E-13, 1E-14, 1E-15, 1E-16 };

    /// <summary>
    /// Indicates whether the values are so close that they can be considered as equal.
    /// </summary>
    public static bool AreClose(XPoint point1, XPoint point2)
    {
      return AreClose(point1.X, point2.X) && AreClose(point1.Y, point2.Y);
    }

    /// <summary>
    /// Indicates whether the values are so close that they can be considered as equal.
    /// </summary>
    public static bool AreClose(XRect rect1, XRect rect2)
    {
      if (rect1.IsEmpty)
        return rect2.IsEmpty;
      return !rect2.IsEmpty && AreClose(rect1.X, rect2.X) && AreClose(rect1.Y, rect2.Y) &&
        AreClose(rect1.Height, rect2.Height) && AreClose(rect1.Width, rect2.Width);
    }

    /// <summary>
    /// Indicates whether the values are so close that they can be considered as equal.
    /// </summary>
    public static bool AreClose(XSize size1, XSize size2)
    {
      return AreClose(size1.Width, size2.Width) && AreClose(size1.Height, size2.Height);
    }

    /// <summary>
    /// Indicates whether the values are so close that they can be considered as equal.
    /// </summary>
    public static bool AreClose(XVector vector1, XVector vector2)
    {
      return AreClose(vector1.X, vector2.X) && AreClose(vector1.Y, vector2.Y);
    }

    /// <summary>
    /// Indicates whether value1 is greater than value2 and the values are not close to each other.
    /// </summary>
    public static bool GreaterThan(double value1, double value2)
    {
      return value1 > value2 && !AreClose(value1, value2);
    }

    /// <summary>
    /// Indicates whether value1 is greater than value2 or the values are close to each other.
    /// </summary>
    public static bool GreaterThanOrClose(double value1, double value2)
    {
      return value1 > value2 || AreClose(value1, value2);
    }

    /// <summary>
    /// Indicates whether value1 is less than value2 and the values are not close to each other.
    /// </summary>
    public static bool LessThan(double value1, double value2)
    {
      return value1 < value2 && !AreClose(value1, value2);
    }

    /// <summary>
    /// Indicates whether value1 is less than value2 or the values are close to each other.
    /// </summary>
    public static bool LessThanOrClose(double value1, double value2)
    {
      return value1 < value2 || AreClose(value1, value2);
    }

    /// <summary>
    /// Indicates whether the value is between 0 and 1 or close to 0 or 1.
    /// </summary>
    public static bool IsBetweenZeroAndOne(double value)
    {
      return GreaterThanOrClose(value, 0) && LessThanOrClose(value, 1);
    }

    /// <summary>
    /// Indicates whether the value is not a number.
    /// </summary>
    public static bool IsNaN(double value)
    {
      NanUnion t = new NanUnion();
      t.DoubleValue = value;

      UInt64 exp = t.UintValue & 0xfff0000000000000;
      UInt64 man = t.UintValue & 0x000fffffffffffff;

      return (exp == 0x7ff0000000000000 || exp == 0xfff0000000000000) && (man != 0);
    }

    /// <summary>
    /// Indicates whether at least one of the four rectangle values is not a number.
    /// </summary>
    public static bool RectHasNaN(XRect r)
    {
      return IsNaN(r.x) || IsNaN(r.y) || IsNaN(r.height) || IsNaN(r.width);
    }

    /// <summary>
    /// Indicates whether the value is 1 or close to 1.
    /// </summary>
    public static bool IsOne(double value)
    {
      return Math.Abs(value - 1.0) < 10.0 * Epsilon;
    }

    /// <summary>
    /// Indicates whether the value is 0 or close to 0.
    /// </summary>
    public static bool IsZero(double value)
    {
      return Math.Abs(value) < 10.0 * Epsilon;
    }

    /// <summary>
    /// Converts a double to integer.
    /// </summary>
    public static int DoubleToInt(double value)
    {
      return 0 < value ? (int)(value + 0.5) : (int)(value - 0.5);
    }

    [StructLayout(LayoutKind.Explicit)]
    struct NanUnion
    {
      [FieldOffset(0)]
      internal double DoubleValue;
      [FieldOffset(0)]
      internal ulong UintValue;
    }
  }
}