Line_width.c 156 B

12345678910
  1. #include <math.h>
  2. #include "pngdriver.h"
  3. int linewidth;
  4. void PNG_Line_width(double width)
  5. {
  6. linewidth = (width < 0 ? 0 : (int) floor(width + 0.5));
  7. }