GRASS 8 Programmer's Manual 8.6.0dev(2026)-b0a6d7703c
Loading...
Searching...
No Matches
color_invrt.c
Go to the documentation of this file.
1/*!
2 \file lib/raster/color_invrt.c
3
4 \brief Raster library - Invert colors
5
6 SPDX-FileCopyrightText: 2003-2009 GRASS Development Team
7 SPDX-License-Identifier: GPL-2.0-or-later
8
9 \author Original author CERL
10 */
11
12#include <grass/gis.h>
13#include <grass/raster.h>
14
15void Rast_invert_colors(struct Colors *colors)
16{
17 colors->invert = !colors->invert;
18}
void Rast_invert_colors(struct Colors *colors)
Definition color_invrt.c:15
Definition gis.h:689
int invert
Definition gis.h:692