ds_grid_get_disk_min

This function can be used to find the minimum value for all the cells found within the defined disk area of a grid, as shown in the image below:

Ds grid get disk min

Syntax:

ds_grid_get_disk_min(index, xm, ym, r);

ArgumentTypeDescription
indexDS GridThe index of the grid.
xmRealThe x position of the disk on the grid.
ymRealThe y position of the disk on the grid.
rRealThe radius of the disk on the grid.

 

Returns:

Real or String

 

Example:

val = ds_grid_get_disk_min(grid, 5, 5, 2)

The above code will set the variable "val" to the minimum value contained within the given disk of the DS grid indexed in the variable "grid".