1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*! \page veditlib 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 vectorlib). Currently only 2D primitives are
- supported (points, lines, boundaries and centroids).
- The library is used by <tt>v.edit</tt> 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()
- \section authors Authors
- Martin Landa <landa.martin gmail.com>
- \section seealso See Also
- - \ref vectorlib
-
- - \ref dbmilib
- Last change: $Date$
- */
|