Struct Point3D
Definition
- Namespace:
- ElmSharp
- Assembly:
- ElmSharp.dll
The Point3D is a struct that defines a 3D point.
C#Copypublic struct Point3D : IEquatable<Point3D>
- Implements
-
System.IEquatable<T><Point3D>
Fields
Declaration
C#Copypublic int X
Field Value
| Type | Description |
|---|---|
| int |
Declaration
C#Copypublic int Y
Field Value
| Type | Description |
|---|---|
| int |
Declaration
C#Copypublic int Z
Field Value
| Type | Description |
|---|---|
| int |
Methods
Declaration
C#Copypublic bool Equals(Point3D other)
Parameters
| Type | Name | Description |
|---|---|---|
| Point3D | other | The Point3D to compare with the current instance. |
Returns
| Type | Description |
|---|---|
| bool | true if the object and this instance are of the same type and represent the same value. otherwise, false. |
Declaration
C#Copypublic override bool Equals(object obj)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj | The object to compare with the current instance. |
Returns
| Type | Description |
|---|---|
| bool | true if the object and this instance are of the same type and represent the same value, otherwise false. |
Overrides
System.ValueType.Equals(object)
Declaration
C#Copypublic override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int |
Overrides
System.ValueType.GetHashCode()
Declaration
C#Copypublic override string ToString()
Returns
| Type | Description |
|---|---|
| string | The string is formatted as "{{X={0} Y={1} Z={2}}}". |
Overrides
System.ValueType.ToString()
Operators
Declaration
C#Copypublic static bool operator ==(Point3D p1, Point3D p2)
Parameters
| Type | Name | Description |
|---|---|---|
| Point3D | p1 | A Tizen.UI.Point3D on the left hand side. |
| Point3D | p2 | A Tizen.UI.Point3D on the right hand side. |
Returns
| Type | Description |
|---|---|
| bool | True if both Tizen.UI.Point3Ds have equal values. |
Declaration
C#Copypublic static bool operator !=(Point3D p1, Point3D p2)
Parameters
| Type | Name | Description |
|---|---|---|
| Point3D | p1 | A Tizen.UI.Point3D on the left hand side. |
| Point3D | p2 | A Tizen.UI.Point3D on the right hand side. |
Returns
| Type | Description |
|---|---|
| bool | True if both Tizen.UI.Point3Ds do not have equal values. |
Implements
System.IEquatable<T>