You are here: Start » FIL.NET » Function Reference » Path » Path Basics » FIL.CreateSegmentPath

FIL.CreateSegmentPath

Creates an open path containing collinear, equidistant points.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void CreateSegmentPath
(
	FilNet.Point2D inBegin,
	FilNet.Point2D inEnd,
	int inPointCount,
	FilNet.Path outPath
)

Parameters

Name Type Range Default Description
inBeginFilNet.Point2DFirst point of the path.
inEndFilNet.Point2DLast point of the path.
inPointCountint<2, INF>2Number of points in the created path. Default value: 2.
outPathFilNet.PathOutput path.

Description

The operation produces an open path that consist of inPointCount equidistant points selected along the segment between inBegin and inEnd.

Examples

CreateSegmentPath run with inPointCount = 5.

See also