Release 4.0.0-preview1-00267
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / Point3D.cs
index ebb8afb..d7f1bfe 100755 (executable)
@@ -38,11 +38,16 @@ namespace ElmSharp
         /// </summary>
         public int Z;
 
+        /// <summary>
+        /// A human-readable representation of the <see cref="T:Tizen.UI.Point3D" />.
+        /// </summary>
+        /// <returns>The string is formatted as "{{X={0} Y={1} Z={2}}}".</returns>
         public override string ToString()
         {
             return string.Format("{{X={0} Y={1} Z={2}}}", X, Y, Z);
         }
 
+        ///
         public override int GetHashCode()
         {
             unchecked
@@ -54,6 +59,14 @@ namespace ElmSharp
             }
         }
 
+        /// <summary>
+        /// Indicates whether this instance and a specified object are equal.
+        /// </summary>
+        /// <param name="obj">The object to compare with the current instance.</param>
+        /// <returns>
+        /// true if obj and this instance are the same type and represent the same value.
+        /// otherwise, false.
+        /// </returns>
         public override bool Equals(object obj)
         {
             if (!(obj is Point3D))
@@ -62,6 +75,14 @@ namespace ElmSharp
             return Equals((Point3D)obj);
         }
 
+        /// <summary>
+        /// Indicates whether this instance and a <see cref="Point3D"/> object are equal.
+        /// </summary>
+        /// <param name="other">The <see cref="Point3D"/> to compare with the current instance.</param>
+        /// <returns>
+        /// true if obj and this instance are the same type and represent the same value.
+        /// otherwise, false.
+        /// </returns>
         public bool Equals(Point3D other)
         {
             return X.Equals(other.X) && Y.Equals(other.Y) && Z.Equals(other.Z);
@@ -89,4 +110,4 @@ namespace ElmSharp
             return !p1.Equals(p2);
         }
     }
-}
+}
\ No newline at end of file