Table of Contents

Class CylindricalCartesian3D

Namespace
LightningChartLib.WinForms.Charting.CoordinateConverters
Assembly
LightningChart.WinForms.Charting.NET4.dll

Cylindrical / 3D cartesian coordinates converter class. XZ plane is the reference plane (polar coordinates plane).

public static class CylindricalCartesian3D
Inheritance
CylindricalCartesian3D
Inherited Members

Methods

ToCartesian(CylindricalPoint)

Convert cylindrical point to cartesian XYZ point.

public static PointDouble3D ToCartesian(this CylindricalPoint cylindricalPoint)

Parameters

cylindricalPoint CylindricalPoint

Cylindrical point.

Returns

PointDouble3D

Cartesian point.

ToCartesian(CylindricalPoint[,])

Convert cylindrical point array to a surface point array. Fills X, Y and Z fields of SurfacePoints.

public static SurfacePoint[,] ToCartesian(this CylindricalPoint[,] cylindricalPoints)

Parameters

cylindricalPoints CylindricalPoint[,]

Cylindrical points.

Returns

SurfacePoint[,]

Surface point array.

ToCartesian(CylindricalPoint[])

Convert cylindrical point array to a series point array. Fills X, Y and Z fields of SeriesPoints3D.

public static SeriesPoint3D[] ToCartesian(this CylindricalPoint[] cylindricalPoints)

Parameters

cylindricalPoints CylindricalPoint[]

Cylindrical points.

Returns

SeriesPoint3D[]

Series point array.

ToCylindrical(PointDouble3D)

Convert a cartesian XYZ point into cylindrical point.

public static CylindricalPoint ToCylindrical(this PointDouble3D xyz)

Parameters

xyz PointDouble3D

Cartesian point.

Returns

CylindricalPoint

Cylindrical point.