GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
color_init.c
Go to the documentation of this file.
1
/*!
2
\file lib/raster/color_init.c
3
4
\brief Raster Library - Initialize Colors structure
5
6
(C) 2001-2009 by the GRASS Development Team
7
8
This program is free software under the GNU General Public License
9
(>=v2). Read the file COPYING that comes with GRASS for details.
10
11
\author Original author CERL
12
*/
13
14
#include <
grass/gis.h
>
15
#include <
grass/raster.h
>
16
17
/*!
18
\brief Initialize color structure
19
20
The <i>colors</i> structure is initialized for subsequent calls
21
to Rast_add_c_color_rule() and Rast_set_c_color().
22
23
\param colors pointer to Colors structure
24
*/
25
void
Rast_init_colors
(
struct
Colors
*colors)
26
{
27
G_zero
(colors,
sizeof
(
struct
Colors
));
28
29
colors->
cmax
= -1;
30
colors->
fixed
.
max
= -1;
31
colors->
modular
.
max
= -1;
32
}
Colors::fixed
struct _Color_Info_ fixed
Definition:
gis.h:679
Colors::cmax
DCELL cmax
Definition:
gis.h:682
Rast_init_colors
void Rast_init_colors(struct Colors *colors)
Initialize color structure.
Definition:
color_init.c:25
raster.h
gis.h
Colors
Definition:
gis.h:665
G_zero
void G_zero(void *, int)
Zero out a buffer, buf, of length i.
Definition:
gis/zero.c:23
Colors::modular
struct _Color_Info_ modular
Definition:
gis.h:680
_Color_Info_::max
DCELL max
Definition:
gis.h:662
lib
raster
color_init.c
Generated on Mon May 31 2021 05:21:28 for GRASS GIS 7 Programmer's Manual by
1.8.13