color_invrt.c 445 B

123456789101112131415161718192021
  1. /*!
  2. \file lib/raster/color_invrt.c
  3. \brief Raster library - Invert colors
  4. (C) 2003-2009 by the GRASS Development Team
  5. This program is free software under the GNU General Public License
  6. (>=v2). Read the file COPYING that comes with GRASS for details.
  7. \author Original author CERL
  8. */
  9. #include <grass/gis.h>
  10. #include <grass/raster.h>
  11. void Rast_invert_colors(struct Colors *colors)
  12. {
  13. colors->invert = !colors->invert;
  14. }