Click or drag to resize

VectorGraphicOptimizerSplitPaths Method

Splits all paths given in the dictionary pathDic into two paths at the command index which is the value of each entry in pathDic.

Namespace: RAYLASE.Marker.VectorGraphicElement
Assembly: RAYLASE.Marker.VectorGraphicElement (in RAYLASE.Marker.VectorGraphicElement.dll) Version: 2.19.0
Syntax
C#
public List<int> SplitPaths(
	VectorGraphicLayer layer,
	SortedDictionary<int, int> pathDic
)

Parameters

layer  VectorGraphicLayer
The layer where the splitting will be done.
pathDic  SortedDictionaryInt32, Int32
This dictionary contains the indices of paths as keys and the index of the command per path as value, where the splitting will be done.

Return Value

ListInt32
A list of indices of the paths which will have a new successor after the operation is done.
See Also