GRASS GIS 8 Programmer's Manual  8.4.0dev(2024)-835afb4352
psdriver/line_width.c
Go to the documentation of this file.
1 #include "psdriver.h"
2 
3 void PS_Line_width(double width)
4 {
5  if (width < 0)
6  width = 0;
7 
8  output("%f WIDTH\n", width);
9 }
void output(const char *fmt,...)
void PS_Line_width(double width)