PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ RTreeMergeIntervals()

static RTREE_INTERVAL * RTreeMergeIntervals ( RTREE_INTERVAL inter1,
RTREE_INTERVAL inter2 
)
static

Creates an interval with the total extents of the two given intervals.

Definition at line 110 of file lwgeom_rtree.c.

111{
112 RTREE_INTERVAL *interval;
113
114 POSTGIS_DEBUGF(2, "RTreeMergeIntervals called with %p, %p", inter1, inter2);
115
116 interval = lwalloc(sizeof(RTREE_INTERVAL));
117 interval->max = FP_MAX(inter1->max, inter2->max);
118 interval->min = FP_MIN(inter1->min, inter2->min);
119
120 POSTGIS_DEBUGF(3, "interval min = %8.3f, max = %8.3f", interval->min, interval->max);
121
122 return interval;
123}
void * lwalloc(size_t size)
Definition lwutil.c:227
#define FP_MAX(A, B)
#define FP_MIN(A, B)
Representation for the y-axis interval spanned by an edge.

References FP_MAX, FP_MIN, lwalloc(), RTREE_INTERVAL::max, and RTREE_INTERVAL::min.

Referenced by RTreeCreateInteriorNode().

Here is the call graph for this function:
Here is the caller graph for this function: