You are here: Start » FIL.NET » FIS.PathToPointDistanceProfile Method

FIS.PathToPointDistanceProfile Method

Computes the profile of distances between the specified point and the characteristic points of a path.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void PathToPointDistanceProfile
(
	FilNet.Point2D inPoint,
	FilNet.Path inPath,
	float inResolution,
	FilNet.Profile outDistanceProfile,
	NullableRef<List<float>> outDistances,
	NullableRef<List<FilNet.Segment2D>> outConnectingSegments
)

Parameters

Name Type Range Default Description
inPointFilNet.Point2DInput point.
inPathFilNet.PathInput path.
inResolutionfloat<0.0f, INF>1.0fDefault value: 1.0f.
outDistanceProfileFilNet.ProfileProfile of distances between input point and consecutive points of input path.
outDistancesFilNet.NullableRef<System.Collections.Generic.List<float>>Distances between input point and consecutive points of input path. Can be null to skip this parameter calculation.
outConnectingSegmentsFilNet.NullableRef<System.Collections.Generic.List<FilNet.Segment2D>>Segments connecting input point and consecutive points of input path. Can be null to skip this parameter calculation.

Function Overrides

See also