ds_grid_get_min

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

Ds grid get min

 

Syntax:

ds_grid_get_min(index, x1, y1, x2, y2);

ArgumentTypeDescription
indexDS GridThe index of the grid.
x1RealThe left cell column of the region.
y1RealThe top cell row of the region.
x2RealThe right cell column of the region.
y2RealThe bottom cell row of the region.

 

Returns:

Real or String

 

Example:

val = ds_grid_get_min(grid, 0, 0, 5, 5)

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