Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Common/3.3/Point2D.cs @ 14929

Last change on this file since 14929 was 14929, checked in by gkronber, 7 years ago

#2520 fixed unit tests for new persistence: loading & storing all samples

File size: 2.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.ComponentModel;
24using System.Globalization;
25using HeuristicLab.Persistence;
26
27namespace HeuristicLab.Common {
28  [Serializable]
29  [StorableType("64c7d002-d5e0-4596-b9d9-c027025f5e9c")]
30  public struct Point2D<T> where T : struct, IEquatable<T> {
31    public static readonly Point2D<T> Empty = new Point2D<T>();
32
33    private T x;
34    public T X {
35      get { return x; }
36    }
37    private T y;
38    public T Y {
39      get { return y; }
40    }
41
42    private object tag;
43    public object Tag {
44      get { return tag; }
45    }
46
47    [Browsable(false)]
48    public bool IsEmpty {
49      get { return Equals(Empty); }
50    }
51
52    public Point2D(T x, T y, object tag = null) {
53      this.x = x;
54      this.y = y;
55      this.tag = tag;
56    }
57
58    public static bool operator ==(Point2D<T> left, Point2D<T> right) {
59      return left.x.Equals(right.x) && left.y.Equals(right.y) && left.tag == right.tag;
60    }
61    public static bool operator !=(Point2D<T> left, Point2D<T> right) {
62      return !(left == right);
63    }
64
65    public override bool Equals(object obj) {
66      if (!(obj is Point2D<T>))
67        return false;
68      Point2D<T> point = (Point2D<T>)obj;
69      return GetType() == point.GetType() && x.Equals(point.x) && y.Equals(point.y) &&
70             ((tag != null && tag.Equals(point.tag)) || tag == point.tag);
71    }
72    public override int GetHashCode() {
73      return base.GetHashCode();
74    }
75
76    public override string ToString() {
77      return string.Format((IFormatProvider)CultureInfo.CurrentCulture, "{{X={0}, Y={1}}}", new object[2] { x, y });
78    }
79  }
80}
Note: See TracBrowser for help on using the repository browser.