File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -417,8 +417,8 @@ sbox_line_pos(const SLine *sl, const SBOX *sb)
417
417
}
418
418
419
419
/*
420
- * Returns the relationship between a box and a path as PGS_BOX_PATH_REL int8
421
- * value.
420
+ * Returns the relationship between a box and a path as
421
+ * PGS_BOX_PATH_REL int8 value.
422
422
*/
423
423
static int8
424
424
sbox_path_pos (const SPATH * path , const SBOX * box )
@@ -474,8 +474,8 @@ sbox_path_pos(const SPATH *path, const SBOX *box)
474
474
}
475
475
476
476
/*
477
- * Returns the relationship between a polygon and a box as PGS_BOX_POLY_REL int8
478
- * value.
477
+ * Returns the relationship between a polygon and a box as
478
+ * PGS_BOX_POLY_REL int8 value.
479
479
*/
480
480
static int8
481
481
sbox_poly_pos (const SPOLY * poly , const SBOX * box )
@@ -822,8 +822,8 @@ sbox_eq(SBOX *b1, SBOX *b2)
822
822
bool
823
823
sbox_cont_point (const SBOX * b , const SPoint * p )
824
824
{
825
- if ((FPeq (p -> lat , b -> ne .lat ) && FPeq (p -> lat , PIH ))
826
- || (FPeq (p -> lat , b -> sw .lat ) && FPeq (p -> lat , - PIH )))
825
+ if ((FPeq (p -> lat , b -> ne .lat ) && FPeq (p -> lat , PIH )) ||
826
+ (FPeq (p -> lat , b -> sw .lat ) && FPeq (p -> lat , - PIH )))
827
827
{
828
828
return true;
829
829
}
Original file line number Diff line number Diff line change @@ -416,12 +416,12 @@ Datum spherebox_cont_box_com(PG_FUNCTION_ARGS);
416
416
Datum spherebox_cont_box_com_neg (PG_FUNCTION_ARGS );
417
417
418
418
/*
419
- * Checks whether boxes overlap.
419
+ * Checks whether two boxes overlap.
420
420
*/
421
421
Datum spherebox_overlap_box (PG_FUNCTION_ARGS );
422
422
423
423
/*
424
- * Checks whether boxes don't overlap.
424
+ * Checks whether two boxes don't overlap.
425
425
*/
426
426
Datum spherebox_overlap_box_neg (PG_FUNCTION_ARGS );
427
427
You can’t perform that action at this time.
0 commit comments