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

RadRect3D

Struct

Represents a structure that defines a 3D rect in a three-dimensional space that is defined by a location and size.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public struct RadRect3D

Inherited Members ValueType.ToString()

Constructors

Initializes a new instance of the RadRect3D struct.

C#
public RadRect3D(RadPoint3D location, RadSize3D size)
Parameters:locationRadPoint3DsizeRadSize3D

Fields

Gets or sets a RadPoint3D that represents the origin of the 3D rect.

C#
public RadPoint3D Location

Gets or sets the size of the 3D rect.

C#
public RadSize3D Size

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 RadRect3D structures are not equal.

C#
public static bool operator !=(RadRect3D rect1, RadRect3D rect2)
Parameters:rect1RadRect3Drect2RadRect3DReturns:

bool

Determines whether two RadRect3D structures are equal.

C#
public static bool operator ==(RadRect3D rect1, RadRect3D rect2)
Parameters:rect1RadRect3Drect2RadRect3DReturns:

bool