PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ lwpoint_inside_circle()

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

Definition at line 644 of file lwgeom.c.

645 {
646  const POINT2D *pt;
647  POINT2D center;
648 
649  if ( ! p || ! p->point )
650  return LW_FALSE;
651 
652  pt = getPoint2d_cp(p->point, 0);
653 
654  center.x = cx;
655  center.y = cy;
656 
657  if ( distance2d_pt_pt(pt, &center) < rad )
658  return LW_TRUE;
659 
660  return LW_FALSE;
661 }
#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:91
POINTARRAY * point
Definition: liblwgeom.h:457
double y
Definition: liblwgeom.h:376
double x
Definition: liblwgeom.h:376

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: