You are here: Start » FIL.NET » Function Reference » Geometry 2D » Geometry 2D Basics » FIL.CreatePointGrid
Creates a grid of points.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void CreatePointGrid ( FilNet.Point2D inPoint, FilNet.Anchor2D inAnchor, int inRowCount, int inColumnCount, float inRowStep, float inColumnStep, IList<FilNet.Point2D> outPointGrid )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoint | FilNet.Point2D | A starting point of the created grid. | ||
![]() | inAnchor | FilNet.Anchor2D | TopLeft | Anchor of the reference point. Default value: TopLeft. | |
![]() | inRowCount | int | <0, +INF> | Number of rows the grid will have. | |
![]() | inColumnCount | int | <0, +INF> | Number of columns the grid will have. | |
![]() | inRowStep | float | <0.0f, INF> | 1.0f | Distance between consecutive rows of the created grid. Default value: 1.0f. |
![]() | inColumnStep | float | <0.0f, INF> | 1.0f | Distance between consecutive columns of the created grid. Default value: 1.0f. |
![]() | outPointGrid | System.Collections.Generic.IList<FilNet.Point2D> | Created point grid. |