rt_mbr.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & Ramil Kalimullin & MySQL Finland AB 
  2.    & TCX DataKonsult AB
  3.    
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2 of the License, or
  7.    (at your option) any later version.
  8.    
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.    
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  17. #ifndef _rt_mbr_h
  18. #define _rt_mbr_h
  19. #ifdef HAVE_RTREE_KEYS
  20. int rtree_key_cmp(HA_KEYSEG *keyseg, uchar *a, uchar *b, uint key_length,
  21.                   uint nextflag);
  22. int rtree_combine_rect(HA_KEYSEG *keyseg,uchar *, uchar *, uchar*, 
  23.                        uint key_length);
  24. double rtree_rect_volume(HA_KEYSEG *keyseg, uchar*, uint key_length);
  25. int rtree_d_mbr(HA_KEYSEG *keyseg, uchar *a, uint key_length, double *res);
  26. double rtree_overlapping_area(HA_KEYSEG *keyseg, uchar *a, uchar *b, 
  27.                               uint key_length);
  28. double rtree_area_increase(HA_KEYSEG *keyseg, uchar *a, uchar *b, 
  29.                            uint key_length, double *ab_area);
  30. double rtree_perimeter_increase(HA_KEYSEG *keyseg, uchar* a, uchar* b, 
  31. uint key_length, double *ab_perim);
  32. int rtree_page_mbr(MI_INFO *info, HA_KEYSEG *keyseg, uchar *page_buf, 
  33.                    uchar* c, uint key_length);
  34. #endif /*HAVE_RTREE_KEYS*/
  35. #endif /* _rt_mbr_h */