PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ lwpoint_inside_circle()

int lwpoint_inside_circle ( const LWPOINT p,
double  cx,
double  cy,
double  rad 
)

Definition at line 645 of file lwgeom.c.

646 {
647  const POINT2D *pt;
648  POINT2D center;
649 
650  if ( ! p || ! p->point )
651  return LW_FALSE;
652 
653  pt = getPoint2d_cp(p->point, 0);
654 
655  center.x = cx;
656  center.y = cy;
657 
658  if ( distance2d_pt_pt(pt, &center) < rad )
659  return LW_TRUE;
660 
661  return LW_FALSE;
662 }
#define LW_FALSE
Definition: liblwgeom.h:108
double distance2d_pt_pt(const POINT2D *p1, const POINT2D *p2)
Definition: measures.c:2397
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:107
static const POINT2D * getPoint2d_cp(const POINTARRAY *pa, uint32_t n)
Returns a POINT2D pointer into the POINTARRAY serialized_ptlist, suitable for reading from.
Definition: lwinline.h:101
POINTARRAY * point
Definition: liblwgeom.h:485
double y
Definition: liblwgeom.h:404
double x
Definition: liblwgeom.h:404

References distance2d_pt_pt(), getPoint2d_cp(), LW_FALSE, LW_TRUE, LWPOINT::point, POINT2D::x, and POINT2D::y.

Referenced by LWGEOM_inside_circle_point().

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