Struct
RadPoint3D

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:

cs-api-definition
public struct RadPoint3D

Inherited Members ValueType.ToString()

Constructors

RadPoint3D(double, double, double)

Initializes a new instance of the RadPoint3D struct.

Declaration

cs-api-definition
public RadPoint3D(double x, double y, double z)

Parameters

x

double

The x.

y

double

The y.

z

double

The z.

Fields

X

The X-coordinate of the point.

Declaration

cs-api-definition
public double X

Field Value

double

Y

The Y-coordinate of the point.

Declaration

cs-api-definition
public double Y

Field Value

double

Z

The Z-coordinate of the point.

Declaration

cs-api-definition
public double Z

Field Value

double

Methods

Equals(object)

Determines whether the specified object is equal to this instance.

Declaration

cs-api-definition
public override bool Equals(object obj)

Parameters

obj

object

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)

GetHashCode()

Returns a hash code for this instance.

Declaration

cs-api-definition
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

operator !=(RadPoint3D, RadPoint3D)

Determines whether two RadPoint3D structures are not equal.

Declaration

cs-api-definition
public static bool operator !=(RadPoint3D point1, RadPoint3D point2)

Parameters

point1

RadPoint3D

point2

RadPoint3D

Returns

bool

operator ==(RadPoint3D, RadPoint3D)

Determines whether two RadPoint3D structures are equal.

Declaration

cs-api-definition
public static bool operator ==(RadPoint3D point1, RadPoint3D point2)

Parameters

point1

RadPoint3D

point2

RadPoint3D

Returns

bool