Click or drag to resize

CVVCopy2 Method

Copy part of a vector into part of another vector.

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntax
public void Copy2(
	int dest,
	CVV vv_s,
	int source,
	int n
)

public void Copy2(
	int dest,
	CVV vv_s,
	int source,
	int n
)

Parameters

dest
Type: SystemInt32
Destination start element
vv_s
Type: GeoEngine.Core.GXNetXCVV
Source VV (can be the same as Destination)
source
Type: SystemInt32
Source start element
n
Type: SystemInt32
Number of points
Remarks
1. Unlike Copy_VV destination VV is not reallocated, nor is the length changed. The caller must make any desired changes. 2. All VV types are supported and will be converted using Convert_GS if necessary.
See Also