PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ lw_pt_in_seg()

int lw_pt_in_seg ( const POINT2D P,
const POINT2D A1,
const POINT2D A2 
)

Returns true if P is between A1/A2.

Only makes sense if P has already been deterined to be on the line defined by A1/A2.

Definition at line 96 of file lwalgorithm.c.

97 {
98  return ((A1->x <= P->x && P->x < A2->x) || (A1->x >= P->x && P->x > A2->x)) ||
99  ((A1->y <= P->y && P->y < A2->y) || (A1->y >= P->y && P->y > A2->y));
100 }
double y
Definition: liblwgeom.h:376
double x
Definition: liblwgeom.h:376

References POINT2D::x, and POINT2D::y.

Referenced by lw_dist2d_seg_arc(), ptarray_contains_point_partial(), and rect_leaf_node_segment_side().

Here is the caller graph for this function: