Click or drag to resize
CVVLinesToXY Method
Convert a 2D Line segment VV into X and Y VVs.

Available since Oasis montaj version: 8.0.0
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNet
Assembly: geoengine.core.gxnet (in geoengine.core.gxnet.dll)
Notes
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 GS_DOUBLE (REAL). N lines produces 2*N X and Y values.
Syntax
public void LinesToXY(
	CVV oVV1,
	CVV oVV2
)

Parameters

oVV1
Type: GeoEngine.Core.GXNetCVV
output VV with X locations (GS_DOUBLE)
oVV2
Type: GeoEngine.Core.GXNetCVV
output VV with Y locations (GS_DOUBLE)
See Also