vedit.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef GRASS_VEDITDEFS_H
  2. #define GRASS_VEDITDEFS_H
  3. /* break.c */
  4. int Vedit_split_lines(struct Map_info *, struct ilist *,
  5. struct line_pnts *, double, struct ilist *);
  6. int Vedit_connect_lines(struct Map_info *, struct ilist *, double);
  7. /* cats.c */
  8. int Vedit_modify_cats(struct Map_info *, struct ilist *,
  9. int, int, struct cat_list *);
  10. /* copy.c */
  11. int Vedit_copy_lines(struct Map_info *, struct Map_info *, struct ilist *);
  12. /* chtype.c */
  13. int Vedit_chtype_lines(struct Map_info *, struct ilist *);
  14. /* delete.c */
  15. int Vedit_delete_lines(struct Map_info *, struct ilist *);
  16. int Vedit_delete_area_centroid(struct Map_info *, int);
  17. int Vedit_delete_area(struct Map_info *, int);
  18. int Vedit_delete_areas_cat(struct Map_info *, int, int);
  19. /* distance.c */
  20. double Vedit_get_min_distance(struct line_pnts *, struct line_pnts *,
  21. int, int *);
  22. /* flip.c */
  23. int Vedit_flip_lines(struct Map_info *, struct ilist *);
  24. /* merge.c */
  25. int Vedit_merge_lines(struct Map_info *, struct ilist *);
  26. /* move.c */
  27. int Vedit_move_lines(struct Map_info *, struct Map_info **, int,
  28. struct ilist *, double, double, double, int, double);
  29. /* render.c */
  30. struct robject_list *Vedit_render_map(struct Map_info *, struct bound_box *, int,
  31. double, double, int, int, double);
  32. /* select.c */
  33. int Vedit_select_by_query(struct Map_info *,
  34. int, int, double, int, struct ilist *);
  35. /* snap.c */
  36. int Vedit_snap_point(struct Map_info *,
  37. int, double *, double *, double *, double, int);
  38. int Vedit_snap_line(struct Map_info *, struct Map_info **, int,
  39. int, struct line_pnts *, double, int);
  40. int Vedit_snap_lines(struct Map_info *, struct Map_info **, int,
  41. struct ilist *, double, int);
  42. /* vertex.c */
  43. int Vedit_move_vertex(struct Map_info *, struct Map_info **, int,
  44. struct ilist *,
  45. struct line_pnts *, double, double,
  46. double, double, double, int, int);
  47. int Vedit_add_vertex(struct Map_info *Map, struct ilist *,
  48. struct line_pnts *, double);
  49. int Vedit_remove_vertex(struct Map_info *, struct ilist *,
  50. struct line_pnts *, double);
  51. /* zbulk.c */
  52. int Vedit_bulk_labeling(struct Map_info *, struct ilist *,
  53. double, double, double, double, double, double);
  54. #endif /* GRASS_VEDITDEFS_H */