GRASS GIS 8 Programmer's Manual
8.5.0dev(2024)-36359e2344
|
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <assert.h>
#include <grass/gis.h>
#include "index.h"
Go to the source code of this file.
Functions | |
int | RTreeValidChildF (union RTree_Child *child) |
int | RTreeSearchF (struct RTree *t, struct RTree_Rect *r, SearchHitCallback *shcb, void *cbarg) |
int | RTreeInsertRectF (struct RTree_Rect *r, union RTree_Child child, int level, struct RTree *t) |
int | RTreeDeleteRectF (struct RTree_Rect *r, union RTree_Child child, struct RTree *t) |
int RTreeDeleteRectF | ( | struct RTree_Rect * | r, |
union RTree_Child | child, | ||
struct RTree * | t | ||
) |
int RTreeInsertRectF | ( | struct RTree_Rect * | r, |
union RTree_Child | child, | ||
int | level, | ||
struct RTree * | t | ||
) |
Definition at line 213 of file indexf.c.
References b, MAXLEVEL, NULL, RTreeAllocNode(), and t.
Referenced by RTreeCreateTree().
int RTreeSearchF | ( | struct RTree * | t, |
struct RTree_Rect * | r, | ||
SearchHitCallback * | shcb, | ||
void * | cbarg | ||
) |
Definition at line 36 of file indexf.c.
Referenced by RTreeCreateTree().
int RTreeValidChildF | ( | union RTree_Child * | child | ) |
Definition at line 26 of file indexf.c.
References RTree_Child::pos.
Referenced by RTreeCreateTree().