PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ _lwt_GetInteriorEdgePoint()

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

Definition at line 1741 of file lwgeom_topo.c.

1742 {
1743  uint32_t i;
1744  POINT2D fp, lp, tp;
1745  POINTARRAY *pa = edge->points;
1746 
1747  if ( pa->npoints < 2 ) return 0; /* empty or structurally collapsed */
1748 
1749  getPoint2d_p(pa, 0, &fp); /* save first point */
1750  getPoint2d_p(pa, pa->npoints-1, &lp); /* save last point */
1751  for (i=1; i<pa->npoints-1; ++i)
1752  {
1753  getPoint2d_p(pa, i, &tp); /* pick next point */
1754  if ( p2d_same(&tp, &fp) ) continue; /* equal to startpoint */
1755  if ( p2d_same(&tp, &lp) ) continue; /* equal to endpoint */
1756  /* this is a good one, neither same of start nor of end point */
1757  *ip = tp;
1758  return 1; /* found */
1759  }
1760 
1761  /* no distinct vertex found */
1762 
1763  /* interpolate if start point != end point */
1764 
1765  if ( p2d_same(&fp, &lp) ) return 0; /* no distinct points in edge */
1766 
1767  ip->x = fp.x + ( (lp.x - fp.x) * 0.5 );
1768  ip->y = fp.y + ( (lp.y - fp.y) * 0.5 );
1769 
1770  return 1;
1771 }
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
Definition: lwgeom_api.c:343
int p2d_same(const POINT2D *p1, const POINT2D *p2)
Definition: lwalgorithm.c:50
POINTARRAY * points
Definition: liblwgeom.h:497
double y
Definition: liblwgeom.h:404
double x
Definition: liblwgeom.h:404
uint32_t npoints
Definition: liblwgeom.h:441

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

Referenced by lwt_ChangeEdgeGeom().

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