CoordinateFactoryCreate(Double, Double, Double) Method

Create coordinates based on x, y and z

Definition

Namespace: StreetSmart.Common.Factories
Assembly: StreetSmart.WinForms (in StreetSmart.WinForms.dll) Version: 24.7.0.0+cc0a01953d1235087ce28d3e921f5bb47d3c0460
C#
public static ICoordinate Create(
	double x,
	double y,
	double z
)

Parameters

x  Double
X value of the coordinate
y  Double
Y value of the coordinate
z  Double
Z value of the coordinate

Return Value

ICoordinate
Coordinate definition

Example

This sample shows how to use the Create(Double, Double, Double) method.
C#
// Create a x, y and z coordinate
double x = 160850.585;
double y = 383923.326;
double z = 2.5;
ICoordinate coordinate = CoordinateFactory.Create(x, y, z);

Version Information

Supported in: 18.7

See Also