PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwline_segmentize2d()

LWLINE* lwline_segmentize2d ( const LWLINE line,
double  dist 
)

Definition at line 141 of file lwline.c.

142 {
143  POINTARRAY *segmentized = ptarray_segmentize2d(line->points, dist);
144  if ( ! segmentized ) return NULL;
145  return lwline_construct(line->srid, NULL, segmentized);
146 }
POINTARRAY * ptarray_segmentize2d(const POINTARRAY *ipa, double dist)
Returns a modified POINTARRAY so that no segment is longer than the given distance (computed using 2d...
Definition: ptarray.c:414
LWLINE * lwline_construct(int srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
POINTARRAY * points
Definition: liblwgeom.h:425
int32_t srid
Definition: liblwgeom.h:424

References lwline_construct(), LWLINE::points, ptarray_segmentize2d(), and LWLINE::srid.

Referenced by lwgeom_segmentize2d().

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