PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ _lwt_GetInteriorEdgePoint()

static int _lwt_GetInteriorEdgePoint ( const LWLINE edge,
POINT2D ip 
)
static

Definition at line 1710 of file lwgeom_topo.c.

1711 {
1712  uint32_t i;
1713  POINT2D fp, lp, tp;
1714  POINTARRAY *pa = edge->points;
1715 
1716  if ( pa->npoints < 2 ) return 0; /* empty or structurally collapsed */
1717 
1718  getPoint2d_p(pa, 0, &fp); /* save first point */
1719  getPoint2d_p(pa, pa->npoints-1, &lp); /* save last point */
1720  for (i=1; i<pa->npoints-1; ++i)
1721  {
1722  getPoint2d_p(pa, i, &tp); /* pick next point */
1723  if ( p2d_same(&tp, &fp) ) continue; /* equal to startpoint */
1724  if ( p2d_same(&tp, &lp) ) continue; /* equal to endpoint */
1725  /* this is a good one, neither same of start nor of end point */
1726  *ip = tp;
1727  return 1; /* found */
1728  }
1729 
1730  /* no distinct vertex found */
1731 
1732  /* interpolate if start point != end point */
1733 
1734  if ( p2d_same(&fp, &lp) ) return 0; /* no distinct points in edge */
1735 
1736  ip->x = fp.x + ( (lp.x - fp.x) * 0.5 );
1737  ip->y = fp.y + ( (lp.y - fp.y) * 0.5 );
1738 
1739  return 1;
1740 }
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
Definition: lwgeom_api.c:348
int p2d_same(const POINT2D *p1, const POINT2D *p2)
Definition: lwalgorithm.c:49
POINTARRAY * points
Definition: liblwgeom.h:425
double y
Definition: liblwgeom.h:331
double x
Definition: liblwgeom.h:331
uint32_t npoints
Definition: liblwgeom.h:374
unsigned int uint32_t
Definition: uthash.h:78

References getPoint2d_p(), POINTARRAY::npoints, p2d_same(), LWLINE::points, POINT2D::x, and POINT2D::y.

Referenced by _lwt_AddFaceSplit(), and lwt_ChangeEdgeGeom().

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