Point.c 253 B

12345678910111213
  1. #include <grass/gis.h>
  2. #include "pngdriver.h"
  3. void PNG_Point(double x, double y)
  4. {
  5. static double point_size = 1.0;
  6. double half_point_size = point_size / 2;
  7. PNG_Box(x - half_point_size, y - half_point_size,
  8. point_size, point_size);
  9. }