[8280] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8280] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.ComponentModel;
|
---|
| 24 | using System.Globalization;
|
---|
[14929] | 25 | using HeuristicLab.Persistence;
|
---|
[8280] | 26 |
|
---|
| 27 | namespace HeuristicLab.Common {
|
---|
| 28 | [Serializable]
|
---|
[14929] | 29 | [StorableType("64c7d002-d5e0-4596-b9d9-c027025f5e9c")]
|
---|
[14860] | 30 | public struct Point2D<T> where T : struct, IEquatable<T> {
|
---|
[8280] | 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 |
|
---|
[14860] | 42 | private object tag;
|
---|
| 43 | public object Tag {
|
---|
| 44 | get { return tag; }
|
---|
| 45 | }
|
---|
| 46 |
|
---|
[8280] | 47 | [Browsable(false)]
|
---|
| 48 | public bool IsEmpty {
|
---|
| 49 | get { return Equals(Empty); }
|
---|
| 50 | }
|
---|
| 51 |
|
---|
[14860] | 52 | public Point2D(T x, T y, object tag = null) {
|
---|
[8280] | 53 | this.x = x;
|
---|
| 54 | this.y = y;
|
---|
[14860] | 55 | this.tag = tag;
|
---|
[8280] | 56 | }
|
---|
| 57 |
|
---|
| 58 | public static bool operator ==(Point2D<T> left, Point2D<T> right) {
|
---|
[14860] | 59 | return left.x.Equals(right.x) && left.y.Equals(right.y) && left.tag == right.tag;
|
---|
[8280] | 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;
|
---|
[14860] | 69 | return GetType() == point.GetType() && x.Equals(point.x) && y.Equals(point.y) &&
|
---|
| 70 | ((tag != null && tag.Equals(point.tag)) || tag == point.tag);
|
---|
[8280] | 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 | }
|
---|