浏览代码

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 年之前
父节点
当前提交
6ce6c04250
共有 1 个文件被更改,包括 1 次插入0 次删除
  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 *);