You are here: Start » FIL.NET » Function Reference » Path » Path Metrics » FIL.PathEditDistance

FIL.PathEditDistance

Computes the edit distance between the input paths.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void PathEditDistance
(
	FilNet.Path inOldPath,
	FilNet.Path inNewPath,
	out int outAdditions,
	out int outRemovals,
	out int outEditions,
	out FilNet.CoordinateSystem2D outAlignment,
	IList<FilNet.Point2D> outOldCommonPoints,
	IList<FilNet.Point2D> outNewCommonPoints,
	IList<FilNet.Point2D> outAddedPoints,
	IList<FilNet.Point2D> outRemovedPoints,
	IList<FilNet.Point2D> outOldEditedPoints,
	IList<FilNet.Point2D> outNewEditedPoints
)

Parameters

Name Type Range Default Description
inOldPathFilNet.Path
inNewPathFilNet.Path
outAdditionsint
outRemovalsint
outEditionsint
outAlignmentFilNet.CoordinateSystem2D
outOldCommonPointsSystem.Collections.Generic.IList<FilNet.Point2D>
outNewCommonPointsSystem.Collections.Generic.IList<FilNet.Point2D>
outAddedPointsSystem.Collections.Generic.IList<FilNet.Point2D>
outRemovedPointsSystem.Collections.Generic.IList<FilNet.Point2D>
outOldEditedPointsSystem.Collections.Generic.IList<FilNet.Point2D>
outNewEditedPointsSystem.Collections.Generic.IList<FilNet.Point2D>

Function Overrides

See also