GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
Main Page
Related Pages
+
Data Structures
Data Structures
Class Hierarchy
+
Data Fields
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Functions
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
x
y
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
r
s
t
u
v
w
y
z
+
Enumerations
a
c
d
e
h
l
m
n
o
p
r
s
t
v
y
+
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
cairodriver/line_width.c
Go to the documentation of this file.
1
/*!
2
\file lib/cairodriver/line_width.c
3
4
\brief GRASS cairo display driver - set line width
5
6
(C) 2007-2008 by Lars Ahlzen and the GRASS Development Team
7
8
This program is free software under the GNU General Public License
9
(>=v2). Read the file COPYING that comes with GRASS for details.
10
11
\author Lars Ahlzen <lars ahlzen.com> (original contibutor)
12
\author Glynn Clements
13
*/
14
15
#include "
cairodriver.h
"
16
17
#define MIN_WIDTH 1
18
19
#ifndef MAX
20
#define MAX(a,b) ((a)>(b)?(a):(b))
21
#endif
22
23
static
double
previous_width = -1;
24
25
/*!
26
\brief Set line width
27
28
\param width line width (double precision)
29
*/
30
void
Cairo_Line_width
(
double
width)
31
{
32
G_debug
(1,
"Cairo_Line_width: %f"
, width);
33
34
width =
MAX
(
MIN_WIDTH
, width);
35
if
(width != previous_width)
36
cairo_set_line_width(
cairo
, width);
37
38
return
;
39
}
Cairo_Line_width
void Cairo_Line_width(double width)
Set line width.
Definition:
cairodriver/line_width.c:30
cairo
cairo_t * cairo
Definition:
cairodriver/graph.c:46
MIN_WIDTH
#define MIN_WIDTH
Definition:
cairodriver/line_width.c:17
cairodriver.h
GRASS cairo display driver - header file.
MAX
#define MAX(a, b)
Definition:
cairodriver/line_width.c:20
G_debug
int G_debug(int, const char *,...) __attribute__((format(printf
lib
cairodriver
line_width.c
Generated on Mon May 31 2021 05:21:30 for GRASS GIS 7 Programmer's Manual by
1.8.13