PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ edge_contains_point()

int edge_contains_point ( const GEOGRAPHIC_EDGE e,
const GEOGRAPHIC_POINT p 
)

Returns true if the point p is on the minor edge defined by the end points of e.

Definition at line 1038 of file lwgeodetic.c.

1039 {
1040  if ( edge_point_in_cone(e, p) && edge_point_on_plane(e, p) )
1041  /* if ( edge_contains_coplanar_point(e, p) && edge_point_on_plane(e, p) ) */
1042  {
1043  LWDEBUG(4, "point is on edge");
1044  return LW_TRUE;
1045  }
1046  LWDEBUG(4, "point is not on edge");
1047  return LW_FALSE;
1048 }
#define LW_FALSE
Definition: liblwgeom.h:94
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:93
int edge_point_on_plane(const GEOGRAPHIC_EDGE *e, const GEOGRAPHIC_POINT *p)
Returns true if the point p is on the great circle plane.
Definition: lwgeodetic.c:775
int edge_point_in_cone(const GEOGRAPHIC_EDGE *e, const GEOGRAPHIC_POINT *p)
Returns true if the point p is inside the cone defined by the two ends of the edge e.
Definition: lwgeodetic.c:788
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83

References edge_point_in_cone(), edge_point_on_plane(), LW_FALSE, LW_TRUE, and LWDEBUG.

Referenced by edge_intersection(), lwline_covers_lwline(), and lwline_covers_lwpoint().

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