line_width.c 609 B

123456789101112131415161718192021222324252627
  1. /*!
  2. \file lib/pngdriver/line_width.c
  3. \brief GRASS png display driver - set line width
  4. (C) 2003-2014 by Per Henrik Johansen and 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 Per Henrik Johansen (original contributor)
  8. \author Glynn Clements
  9. */
  10. #include <math.h>
  11. #include "pngdriver.h"
  12. /*!
  13. \brief Set line width
  14. \param width line width (double precision)
  15. */
  16. void PNG_Line_width(double width)
  17. {
  18. png.linewidth = (width < 0 ? 0 : (int) floor(width + 0.5));
  19. }