ds_grid_get_disk_max

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

DS grid get disk max

Syntax:

ds_grid_get_disk_max(index, xm, ym, r);

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

 

Returns:

Real or String

 

Example:

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

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