PostGIS  2.5.7dev-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 95 of file lwalgorithm.c.

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

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: