Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / Point.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18
19 namespace ElmSharp
20 {
21     /// <summary>
22     /// The Point is a struct that defines a 2-D point as a pair of generic type.
23     /// </summary>
24     public struct Point : IEquatable<Point>
25     {
26         /// <summary>
27         /// Location along the horizontal axis.
28         /// </summary>
29         public int X;
30
31         /// <summary>
32         /// Location along the vertical axis.
33         /// </summary>
34         public int Y;
35
36         public override string ToString()
37         {
38             return string.Format("{{X={0} Y={1}}}", X, Y);
39         }
40
41         public override int GetHashCode()
42         {
43             unchecked
44             {
45                 return X.GetHashCode() ^ (Y.GetHashCode() * 397);
46             }
47         }
48
49         public override bool Equals(object obj)
50         {
51             if (!(obj is Point))
52                 return false;
53
54             return Equals((Point)obj);
55         }
56
57         public bool Equals(Point other)
58         {
59             return X.Equals(other.X) && Y.Equals(other.Y);
60         }
61
62         /// <summary>
63         /// Whether the two <see cref="T:Tizen.UI.Point" />s are equal.
64         /// </summary>
65         /// <param name="p1">A <see cref="T:Tizen.UI.Point" /> on the left hand side.</param>
66         /// <param name="p2">A <see cref="T:Tizen.UI.Point" /> on the right hand side.</param>
67         /// <returns>True if the two <see cref="T:Tizen.UI.Point" />s have equal values.</returns>
68         public static bool operator ==(Point p1, Point p2)
69         {
70             return p1.Equals(p2);
71         }
72
73         /// <summary>
74         /// Whether two <see cref="T:Tizen.UI.Point" />s are not equal.
75         /// </summary>
76         /// <param name="p1">A <see cref="T:Tizen.UI.Point" /> on the left hand side.</param>
77         /// <param name="p2">A <see cref="T:Tizen.UI.Point" /> on the right hand side.</param>
78         /// <returns>True if the two <see cref="T:Tizen.UI.Point" />s do not have equal values.</returns>
79         public static bool operator !=(Point p1, Point p2)
80         {
81             return !p1.Equals(p2);
82         }
83     }
84 }