You are here: Start » AVL.NET » Invoke.CreatePointGrid
Creates a grid of points.
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void CreatePointGrid ( Avl.Point2D inPoint, Avl.Anchor2D inAnchor, int inRowCount, int inColumnCount, float inRowStep, float inColumnStep, List<Avl.Point2D> outPointGrid )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]()  | inPoint | Avl.Point2D | A starting point of the created grid. | ||
![]()  | inAnchor | Avl.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.List<Avl.Point2D> | Created point grid. | 


