You are here: Start » AVL.NET » Invoke.CreateRandomPointArray
Creates array of random points inside given box.
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void CreateRandomPointArray ( int inLength, Avl.Box inBox, float inStep, Optional<int> inSeed, List<Avl.Point2D> outArray )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]()  | inLength | int | <1, +INF> | 10 | Length of output array. Default value: 10. | 
![]()  | inBox | Avl.Box | Bounding box of generated point. | ||
![]()  | inStep | float | <0.0001f, INF> | 1.0f | Minimal difference between two generated values on each coordinate. Default value: 1.0f. | 
![]()  | inSeed | Atl.Optional<int> | Random seed. Default value: atl::NIL. | ||
![]()  | outArray | System.Collections.Generic.List<Avl.Point2D> | 


