Struct Point3D
Definition
- Namespace:
- ElmSharp
- Assembly:
- ElmSharp.dll
The Point3D is a struct that defines a 3D point.
C#Copy[Obsolete("This has been deprecated in API12")] public struct Point3D : IEquatable<Point3D>
- Implements
-
System.IEquatable<T><Point3D>
Fields
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public int X
Field Value
| Type | Description |
|---|---|
| int |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public int Y
Field Value
| Type | Description |
|---|---|
| int |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public int Z
Field Value
| Type | Description |
|---|---|
| int |
Methods
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public 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#Copy[Obsolete("This has been deprecated in API12")] public 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#Copy[Obsolete("This has been deprecated in API12")] public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int |
Overrides
System.ValueType.GetHashCode()
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public 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#Copy[Obsolete("This has been deprecated in API12")] public static bool operator ==(Point3D p1, Point3D p2)
Parameters
| Type | Name | Description |
|---|---|---|
| Point3D | p1 | A Point3D on the left hand side. |
| Point3D | p2 | A Point3D on the right hand side. |
Returns
| Type | Description |
|---|---|
| bool | True if both Point3Ds have equal values. |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public static bool operator !=(Point3D p1, Point3D p2)
Parameters
| Type | Name | Description |
|---|---|---|
| Point3D | p1 | A Point3D on the left hand side. |
| Point3D | p2 | A Point3D on the right hand side. |
Returns
| Type | Description |
|---|---|
| bool | True if both Point3Ds do not have equal values. |
Implements
System.IEquatable<T>