GRASS 8 Programmer's Manual 8.6.0dev(2026)-985dd2421b
Loading...
Searching...
No Matches
vector/Vlib/window.c
Go to the documentation of this file.
1/*!
2 \file lib/vector/Vlib/window.c
3
4 \brief Vector library - window/region
5
6 Higher level functions for reading/writing/manipulating vectors.
7
8 SPDX-FileCopyrightText: 2001-2009 GRASS Development Team
9 SPDX-License-Identifier: GPL-2.0-or-later
10
11 \author Radim Blazek
12 */
13#include <grass/vector.h>
14
15/*
16 int
17 Vect__get_window (
18 struct Map_info *Map, double *n, double *s, double *e, double *w)
19 {
20 struct dig_head *dhead;
21
22 dhead = &(Map->head);
23
24 *n = dhead->N;
25 *s = dhead->S;
26 *e = dhead->E;
27 *w = dhead->W;
28
29 return (0);
30 }
31 */