Random Points


Functionality

These functions create a set of random points inside a given X and Y ranges.

Function Signature

RandomPoints() creates a set of random points. Here, the random points are not fixed. Their position always changes when the model is updated. 

Point[] RandomPoints(int Number, int Ymin, int Ymax, int Xmin, int Xmax, CoordinateSystem CS)

FixedRandomPoints() creates a fixed set of random points. The position of the random points is always fixed irrespective of the model changes. 

Point[] FixedRandomPoints(int Number, int Ymin, int Ymax, int Xmin, int Xmax, CoordinateSystem CS)

GC Packager File

communities.bentley.com/.../RandomPoints.gcp

Reference

Create a Set of Random Points