Browse Source

vlib: add missing declaration for 2D point in box, fixes https://trac.osgeo.org/grass/changeset/66459 (https://trac.osgeo.org/grass/changeset/66460 broke compilation)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@66462 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras 9 năm trước cách đây
mục cha
commit
6ce6c04250
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      include/defs/vector.h

+ 1 - 0
include/defs/vector.h

@@ -134,6 +134,7 @@ void Vect_destroy_boxlist(struct boxlist *);
 
 /* Bounding box (MBR) */
 int Vect_point_in_box(double, double, double, const struct bound_box *);
+int Vect_point_in_box_2d(double, double, const struct bound_box *);
 int Vect_box_overlap(const struct bound_box *, const struct bound_box *);
 int Vect_box_copy(struct bound_box *, const struct bound_box *);
 int Vect_box_extend(struct bound_box *, const struct bound_box *);