vedit.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. /* distance.c */
  17. double Vedit_get_min_distance(struct line_pnts *, struct line_pnts *,
  18. int, int *);
  19. /* flip.c */
  20. int Vedit_flip_lines(struct Map_info *, struct ilist *);
  21. /* merge.c */
  22. int Vedit_merge_lines(struct Map_info *, struct ilist *);
  23. /* move.c */
  24. int Vedit_move_lines(struct Map_info *, struct Map_info **, int,
  25. struct ilist *, double, double, double, int, double);
  26. /* render.c */
  27. struct robject_list *Vedit_render_map(struct Map_info *, struct bound_box *, int,
  28. double, double, int, int, double);
  29. /* select.c */
  30. int Vedit_select_by_query(struct Map_info *,
  31. int, int, double, int, struct ilist *);
  32. /* snap.c */
  33. int Vedit_snap_point(struct Map_info *,
  34. int, double *, double *, double *, double, int);
  35. int Vedit_snap_line(struct Map_info *, struct Map_info **, int,
  36. int, struct line_pnts *, double, int);
  37. int Vedit_snap_lines(struct Map_info *, struct Map_info **, int,
  38. struct ilist *, double, int);
  39. /* vertex.c */
  40. int Vedit_move_vertex(struct Map_info *, struct Map_info **, int,
  41. struct ilist *,
  42. struct line_pnts *, double, double,
  43. double, double, double, int, int);
  44. int Vedit_add_vertex(struct Map_info *Map, struct ilist *,
  45. struct line_pnts *, double);
  46. int Vedit_remove_vertex(struct Map_info *, struct ilist *,
  47. struct line_pnts *, double);
  48. /* zbulk.c */
  49. int Vedit_bulk_labeling(struct Map_info *, struct ilist *,
  50. double, double, double, double, double, double);
  51. #endif /* GRASS_VEDITDEFS_H */