Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / Point3D.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 Point3D is a Struct that defining a 3-D point.
23     /// </summary>
24     public struct Point3D : IEquatable<Point3D>
25     {
26         /// <summary>
27         /// The X coordinate of a 3D point.
28         /// </summary>
29         public int X;
30
31         /// <summary>
32         /// The Y coordinate of a 3D point.
33         /// </summary>
34         public int Y;
35
36         /// <summary>
37         /// The Z coordinate of a 3D point.
38         /// </summary>
39         public int Z;
40
41         public override string ToString()
42         {
43             return string.Format("{{X={0} Y={1} Z={2}}}", X, Y, Z);
44         }
45
46         public override int GetHashCode()
47         {
48             unchecked
49             {
50                 int hashCode = X.GetHashCode();
51                 hashCode = (hashCode * 397) ^ Y.GetHashCode();
52                 hashCode = (hashCode * 397) ^ Z.GetHashCode();
53                 return hashCode;
54             }
55         }
56
57         public override bool Equals(object obj)
58         {
59             if (!(obj is Point3D))
60                 return false;
61
62             return Equals((Point3D)obj);
63         }
64
65         public bool Equals(Point3D other)
66         {
67             return X.Equals(other.X) && Y.Equals(other.Y) && Z.Equals(other.Z);
68         }
69
70         /// <summary>
71         /// Whether the two <see cref="T:Tizen.UI.Point3D" />s are equal.
72         /// </summary>
73         /// <param name="p1">A <see cref="T:Tizen.UI.Point3D" /> on the left hand side.</param>
74         /// <param name="p2">A <see cref="T:Tizen.UI.Point3D" /> on the right hand side.</param>
75         /// <returns>True if the two <see cref="T:Tizen.UI.Point3D" />s have equal values.</returns>
76         public static bool operator ==(Point3D p1, Point3D p2)
77         {
78             return p1.Equals(p2);
79         }
80
81         /// <summary>
82         /// Whether two <see cref="T:Tizen.UI.Point3D" />s are not equal.
83         /// </summary>
84         /// <param name="p1">A <see cref="T:Tizen.UI.Point3D" /> on the left hand side.</param>
85         /// <param name="p2">A <see cref="T:Tizen.UI.Point3D" /> on the right hand side.</param>
86         /// <returns>True if the two <see cref="T:Tizen.UI.Point3D" />s do not have equal values.</returns>
87         public static bool operator !=(Point3D p1, Point3D p2)
88         {
89             return !p1.Equals(p2);
90         }
91     }
92 }