  | CVVLinesToXY Method  | 
 Convert a 2D Line segment VV into X and Y VVs.
 
    Namespace: 
   GeoEngine.Core.GXNet
    Assembly:
   geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2025.1.0.25
Syntaxpublic void LinesToXY(
	CVV vv_x,
	CVV vv_y
)
public void LinesToXY(
	CVV vv_x,
	CVV vv_y
)
Public Sub LinesToXY ( 
	vv_x As CVV,
	vv_y As CVV
)
Public Sub LinesToXY ( 
	vv_x As CVV,
	vv_y As CVV
)
public:
void LinesToXY(
	CVV^ vv_x, 
	CVV^ vv_y
)
public:
void LinesToXY(
	CVV^ vv_x, 
	CVV^ vv_y
)
member LinesToXY : 
        vv_x : CVV * 
        vv_y : CVV -> unit 
member LinesToXY : 
        vv_x : CVV * 
        vv_y : CVV -> unit 
Parameters
- vv_x
 - Type: GeoEngine.Core.GXNetCVV
Output VV with X locations (<define>GS_DOUBLE</define>) - vv_y
 - Type: GeoEngine.Core.GXNetCVV
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