GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
Go to the source code of this file.
Functions | |
int | D_set_overlay_mode (int n) |
Configure raster overlay mode. More... | |
int | D_color (CELL cat, struct Colors *colors) |
int | D_c_color (CELL cat, struct Colors *colors) |
int | D_d_color (DCELL val, struct Colors *colors) |
Same functionality as D_color() except that the value is type DCELL . This implies that the floating-point interfaces to the colors are used by this routine. More... | |
int | D_f_color (FCELL val, struct Colors *colors) |
Same functionality as D_color() except that the value is type FCELL . This implies that the floating-point interfaces to the colors are used by this routine. More... | |
int | D_color_of_type (const void *raster, struct Colors *colors, RASTER_MAP_TYPE data_type) |
If the data_type is CELL_TYPE, calls D_color((CELL *value, colors); If the data_type is FCELL_TYPE, calls D_f_color((FCELL *value, colors); If the data_type is DCELL_TYPE, calls D_d_color((DCELL *value, colors);. More... | |
Variables | |
int | D__overlay_mode = 0 |
int D_color_of_type | ( | const void * | raster, |
struct Colors * | colors, | ||
RASTER_MAP_TYPE | data_type | ||
) |
int D_set_overlay_mode | ( | int | n | ) |
Configure raster overlay mode.
This routine determines if D_draw_raster() draws in overlay mode (locations with category 0 are left untouched) or not (colored with the color for category 0).
n | 1 (TRUE) for overlay mode; 0 (FALSE) otherwise |
Definition at line 50 of file raster2.c.
References D__overlay_mode.
int D__overlay_mode = 0 |
Definition at line 36 of file raster2.c.
Referenced by D_set_overlay_mode().