1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
/*! \page Vedit_Library GRASS Vedit Library
by GRASS Development Team
http://grass.osgeo.org
\section veditIntro Introduction to Vedit Library
This library contains higher level functions for editing %vector
geometry (see \ref Vector_Library). Currently only 2D primitives are
supported (points, lines, boundaries and centroids).
<p>
The library is used by v.edit module and wxGUI %vector digitizer.
\section veditFn Functions
\subsection veditModify Modify primitives
- Vedit_split_lines()
- Vedit_connect_lines()
- Vedit_chtype_lines()
- Vedit_delete_lines()
- Vedit_flip_lines()
- Vedit_merge_lines()
- Vedit_move_lines()
\subsection veditCats Manipulate feature categories
- Vedit_modify_cats()
\subsection veditCopy Copy primitives
- Vedit_copy_lines()
\subsection veditSelect Select primitives
- Vedit_select_by_query()
\subsection veditSnap Snapping
- Vedit_snap_point()
- Vedit_snap_line()
- Vedit_snap_lines()
\subsection veditVertex Vertex manipulation
- Vedit_move_vertex()
- Vedit_add_vertex()
- Vedit_remove_vertex()
\subsection veditMisc Miscellaneous
- Vedit_get_min_distance()
- Vedit_bulk_labeling()
- Vedit_render_map()
\section seealso See Also
- \ref Vector_Library
- \ref dbmilib
\section authors Authors
Martin Landa <landa.martin gmail.com>
*/
|