CartesianParse Method

Parses a string into a Cartesian coordinate.

Definition

Namespace: CoordinateSharp
Assembly: CoordinateSharp (in CoordinateSharp.dll) Version: 2.21.1.1
XMLNS for XAML: Not mapped to an xmlns.
C#
public static Cartesian Parse(
	string value
)

Parameters

value  String
string

Return Value

Cartesian
Cartesian

Example

The following example attempts to parse a Cartesian coordinate.
C#
Cartesian cart = Cartesian.Parse("0.03398841 -0.64592813 0.76264123");

See Also