[8280] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17181] | 3 | * Copyright (C) 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;
|
---|
[17097] | 25 | using HEAL.Attic;
|
---|
[8280] | 26 |
|
---|
| 27 | namespace HeuristicLab.Common {
|
---|
| 28 | [Serializable]
|
---|
[17097] | 29 | [StorableType("9c4b8927-6b8e-490f-a367-78091ccf1494")]
|
---|
[15097] | 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 | }
|
---|
[17097] | 37 |
|
---|
[8280] | 38 | private T y;
|
---|
| 39 | public T Y {
|
---|
| 40 | get { return y; }
|
---|
| 41 | }
|
---|
| 42 |
|
---|
[15097] | 43 | private object tag;
|
---|
| 44 | public object Tag {
|
---|
| 45 | get { return tag; }
|
---|
| 46 | }
|
---|
| 47 |
|
---|
[8280] | 48 | [Browsable(false)]
|
---|
| 49 | public bool IsEmpty {
|
---|
| 50 | get { return Equals(Empty); }
|
---|
| 51 | }
|
---|
| 52 |
|
---|
[15097] | 53 | public Point2D(T x, T y, object tag = null) {
|
---|
[8280] | 54 | this.x = x;
|
---|
| 55 | this.y = y;
|
---|
[15097] | 56 | this.tag = tag;
|
---|
[8280] | 57 | }
|
---|
| 58 |
|
---|
[15220] | 59 | public static Point2D<T> Create(T x, T y, object tag = null) {
|
---|
| 60 | return new Point2D<T>(x, y, tag);
|
---|
| 61 | }
|
---|
| 62 |
|
---|
[8280] | 63 | public static bool operator ==(Point2D<T> left, Point2D<T> right) {
|
---|
[15097] | 64 | return left.x.Equals(right.x) && left.y.Equals(right.y) && left.tag == right.tag;
|
---|
[8280] | 65 | }
|
---|
| 66 | public static bool operator !=(Point2D<T> left, Point2D<T> right) {
|
---|
| 67 | return !(left == right);
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | public override bool Equals(object obj) {
|
---|
| 71 | if (!(obj is Point2D<T>))
|
---|
| 72 | return false;
|
---|
| 73 | Point2D<T> point = (Point2D<T>)obj;
|
---|
[15097] | 74 | return GetType() == point.GetType() && x.Equals(point.x) && y.Equals(point.y) &&
|
---|
| 75 | ((tag != null && tag.Equals(point.tag)) || tag == point.tag);
|
---|
[8280] | 76 | }
|
---|
| 77 | public override int GetHashCode() {
|
---|
| 78 | return base.GetHashCode();
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | public override string ToString() {
|
---|
| 82 | return string.Format((IFormatProvider)CultureInfo.CurrentCulture, "{{X={0}, Y={1}}}", new object[2] { x, y });
|
---|
| 83 | }
|
---|
| 84 | }
|
---|
| 85 | }
|
---|