Click or drag to resize

CVVLinesToXY Method

Convert a 2D Line segment VV into X and Y VVs.

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntax
public void LinesToXY(
	CVV vv_x,
	CVV vv_y
)

public void LinesToXY(
	CVV vv_x,
	CVV vv_y
)

Parameters

vv_x
Type: GeoEngine.Core.GXNetXCVV
Output VV with X locations (<define>GS_DOUBLE</define>)
vv_y
Type: GeoEngine.Core.GXNetXCVV
Output VV with Y locations (<define>GS_DOUBLE</define>)
Remarks
Some GX functions (such as GetVoronoiEdges_TIN) return a special VV where each element contains the start and end points of lines, (X_1, Y_1) and (X_2, Y_2). This GX dumps the individual X and Y values into individual X and Y VVs of type <define>GS_DOUBLE</define> (REAL). N lines produces 2*N X and Y values.
See Also