You are here: Start » FIL.NET » Invoke.CreatePointGraph
Creates a graph of points that lie close to each other.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void CreatePointGraph ( List<Fil.Point2D> inPoints, int inMaxRank, float inMinDistance, Optional<float> inMaxDistance, Optional<float> inMaxRelativeDistance, List<List<int>> outGraph, List<List<float>> outDistances, Diagnostic<List<Fil.Segment2D>> diagSegments )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoints | System.Collections.Generic.List<Fil.Point2D> | Input points. | ||
![]() | inMaxRank | int | <1, INF> | 8 | Maximum connections going out of one point. Default value: 8. |
![]() | inMinDistance | float | <0.0f, INF> | 0.0f | Minimum distance between adjacent point in the graph. Default value: 0.0f. |
![]() | inMaxDistance | Ftl.Optional<float> | <0.0f, INF> | 10.0f | Maximum distance between adjacent point in the graph. Default value: 10.0f. |
![]() | inMaxRelativeDistance | Ftl.Optional<float> | <1.0f, INF> | Maximum distance in relation to the shortest distance for a point. Default value: ftl::NIL. | |
![]() | outGraph | System.Collections.Generic.List<System.Collections.Generic.List<int>> | Graph of points (adjacency list). | ||
![]() | outDistances | System.Collections.Generic.List<System.Collections.Generic.List<float>> | Distances between adjacent points in the graph. | ||
![]() | diagSegments | Fil.Diagnostic<System.Collections.Generic.List<Fil.Segment2D>> | Graph edges, useful for visualization. |