PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwline_segmentize2d()

LWLINE* lwline_segmentize2d ( LWLINE line,
double  dist 
)

Definition at line 147 of file lwline.c.

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

Referenced by lwgeom_segmentize2d().

148 {
149  POINTARRAY *segmentized = ptarray_segmentize2d(line->points, dist);
150  if ( ! segmentized ) return NULL;
151  return lwline_construct(line->srid, NULL, segmentized);
152 }
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:415
int32_t srid
Definition: liblwgeom.h:421
LWLINE * lwline_construct(int srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
POINTARRAY * points
Definition: liblwgeom.h:422
Here is the call graph for this function:
Here is the caller graph for this function: