New to Telerik UI for WPFStart a free 30-day trial

Represents a structure that defines a 3D location (X, Y, Z) in a three-dimensional space.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public struct RadPoint3D

Inherited Members ValueType.ToString()

Constructors

Initializes a new instance of the RadPoint3D struct.

C#
public RadPoint3D(double x, double y, double z)
Parameters:xdouble

The x.

ydouble

The y.

zdouble

The z.

Fields

The X-coordinate of the point.

C#
public double X

The Y-coordinate of the point.

C#
public double Y

The Z-coordinate of the point.

C#
public double Z

Methods

Determines whether the specified object is equal to this instance.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare with this instance.

Returns:

bool

true if the specified object is equal to this instance; otherwise, false.

Overrides: ValueType.Equals(object)

Returns a hash code for this instance.

C#
public override int GetHashCode()
Returns:

int

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.

Overrides: ValueType.GetHashCode()

Operators

Determines whether two RadPoint3D structures are not equal.

C#
public static bool operator !=(RadPoint3D point1, RadPoint3D point2)
Parameters:point1RadPoint3Dpoint2RadPoint3DReturns:

bool

Determines whether two RadPoint3D structures are equal.

C#
public static bool operator ==(RadPoint3D point1, RadPoint3D point2)
Parameters:point1RadPoint3Dpoint2RadPoint3DReturns:

bool