vedit.h 2.3 KB

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