PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwpoly_startpoint()

int lwpoly_startpoint ( const LWPOLY poly,
POINT4D pt 
)

Definition at line 614 of file lwpoly.c.

References LW_FAILURE, LWPOLY::nrings, ptarray_startpoint(), and LWPOLY::rings.

Referenced by lwgeom_startpoint().

615 {
616  if ( poly->nrings < 1 )
617  return LW_FAILURE;
618  return ptarray_startpoint(poly->rings[0], pt);
619 }
#define LW_FAILURE
Definition: liblwgeom.h:79
POINTARRAY ** rings
Definition: liblwgeom.h:457
int nrings
Definition: liblwgeom.h:455
int ptarray_startpoint(const POINTARRAY *pa, POINT4D *pt)
Definition: ptarray.c:1873
Here is the call graph for this function:
Here is the caller graph for this function: