Struct RadPoint3D
Represents a structure that defines a 3D location (X, Y, Z) in a three-dimensional space.
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public struct RadPoint3D
Constructors
RadPoint3D(Double, Double, Double)
Initializes a new instance of the RadPoint3D struct.
Declaration
public RadPoint3D(double x, double y, double z)
Parameters
System.Double
x
The x. |
System.Double
y
The y. |
System.Double
z
The z. |
Fields
X
The X-coordinate of the point.
Declaration
public double X
Field Value
System.Double
|
Y
The Y-coordinate of the point.
Declaration
public double Y
Field Value
System.Double
|
Z
The Z-coordinate of the point.
Declaration
public double Z
Field Value
System.Double
|
Methods
Equals(Object)
Determines whether the specified System.Object is equal to this instance.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The System.Object to compare with this instance. |
Returns
System.Boolean
|
Overrides
GetHashCode()
Returns a hash code for this instance.
Declaration
public override int GetHashCode()
Returns
System.Int32
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. |
Overrides
Operators
Equality(RadPoint3D, RadPoint3D)
Determines whether two RadPoint3D structures are equal.
Declaration
public static bool operator ==(RadPoint3D point1, RadPoint3D point2)
Parameters
RadPoint3D
point1
|
RadPoint3D
point2
|
Returns
System.Boolean
|
Inequality(RadPoint3D, RadPoint3D)
Determines whether two RadPoint3D structures are not equal.
Declaration
public static bool operator !=(RadPoint3D point1, RadPoint3D point2)
Parameters
RadPoint3D
point1
|
RadPoint3D
point2
|
Returns
System.Boolean
|