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
License: Available to anyone with an Oasis Montaj license.  

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.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 <define>GS_DOUBLE</define> (REAL). N lines produces 2*N X and Y values.
Syntax
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>)
See Also