GRASS GIS 7 Programmer's Manual  7.9.dev(2021)-e5379bbd7
psdriver/set_window.c
Go to the documentation of this file.
1 
2 /****************************************************************************
3  *
4  * MODULE: PNG driver
5  * AUTHOR(S): Glynn Clements <glynn@gclements.plus.com>
6  * COPYRIGHT: (C) 2007 Glynn Clements
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  *****************************************************************************/
19 
20 #include "psdriver.h"
21 
22 void PS_Set_window(double t, double b, double l, double r)
23 {
24  output("%.1f %.1f %.1f %.1f %s\n", t, b, l, r,
25  ps.encapsulated ? "EPSWINDOW" : "WINDOW");
26 }
struct ps_state ps
void PS_Set_window(double t, double b, double l, double r)
double l
Definition: r_raster.c:39
double t
Definition: r_raster.c:39
int encapsulated
Definition: psdriver.h:16
double b
Definition: r_raster.c:39
void output(const char *fmt,...)
double r
Definition: r_raster.c:39