You are here: Start » FIL.NET » Invoke.CreateRandomPointArray

Invoke.CreateRandomPointArray

Creates array of random points inside given box.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void CreateRandomPointArray
(
	int inLength,
	Fil.Box inBox,
	float inStep,
	Optional<int> inSeed,
	List<Fil.Point2D> outArray
)

Parameters

Name Type Range Default Description
inLengthint<1, +INF>10Length of output array. Default value: 10.
inBoxFil.BoxBounding box of generated point.
inStepfloat<0.0001f, INF>1.0fMinimal difference between two generated values on each coordinate. Default value: 1.0f.
inSeedFtl.Optional<int>Random seed. Default value: ftl::NIL.
outArraySystem.Collections.Generic.List<Fil.Point2D>

See also