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)
417417}
418418
419419/*
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.
422422 */
423423static int8
424424sbox_path_pos (const SPATH * path , const SBOX * box )
@@ -474,8 +474,8 @@ sbox_path_pos(const SPATH *path, const SBOX *box)
474474}
475475
476476/*
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.
479479 */
480480static int8
481481sbox_poly_pos (const SPOLY * poly , const SBOX * box )
@@ -822,8 +822,8 @@ sbox_eq(SBOX *b1, SBOX *b2)
822822bool
823823sbox_cont_point (const SBOX * b , const SPoint * p )
824824{
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 )))
827827 {
828828 return true;
829829 }
Original file line number Diff line number Diff line change @@ -416,12 +416,12 @@ Datum spherebox_cont_box_com(PG_FUNCTION_ARGS);
416416Datum spherebox_cont_box_com_neg (PG_FUNCTION_ARGS );
417417
418418/*
419- * Checks whether boxes overlap.
419+ * Checks whether two boxes overlap.
420420 */
421421Datum spherebox_overlap_box (PG_FUNCTION_ARGS );
422422
423423/*
424- * Checks whether boxes don't overlap.
424+ * Checks whether two boxes don't overlap.
425425 */
426426Datum spherebox_overlap_box_neg (PG_FUNCTION_ARGS );
427427
You can’t perform that action at this time.
0 commit comments