PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwcircstring_linearize()

static LWLINE* lwcircstring_linearize ( const LWCIRCSTRING icurve,
double  tol,
LW_LINEARIZE_TOLERANCE_TYPE  tolerance_type,
int  flags 
)
static

Definition at line 413 of file lwstroke.c.

416 {
417  LWLINE *oline;
418  POINTARRAY *ptarray;
419  uint32_t i, j;
420  POINT4D p1, p2, p3, p4;
421  int ret;
422 
423  LWDEBUGF(2, "lwcircstring_linearize called., dim = %d", icurve->points->flags);
424 
425  ptarray = ptarray_construct_empty(FLAGS_GET_Z(icurve->points->flags), FLAGS_GET_M(icurve->points->flags), 64);
426 
427  for (i = 2; i < icurve->points->npoints; i+=2)
428  {
429  LWDEBUGF(3, "lwcircstring_linearize: arc ending at point %d", i);
430 
431  getPoint4d_p(icurve->points, i - 2, &p1);
432  getPoint4d_p(icurve->points, i - 1, &p2);
433  getPoint4d_p(icurve->points, i, &p3);
434 
435  ret = lwarc_linearize(ptarray, &p1, &p2, &p3, tol, tolerance_type, flags);
436  if ( ret > 0 )
437  {
438  LWDEBUGF(3, "lwcircstring_linearize: generated %d points", ptarray->npoints);
439  }
440  else if ( ret == 0 )
441  {
442  LWDEBUG(3, "lwcircstring_linearize: points are colinear, returning curve points as line");
443 
444  for (j = i - 2 ; j < i ; j++)
445  {
446  getPoint4d_p(icurve->points, j, &p4);
447  ptarray_append_point(ptarray, &p4, LW_TRUE);
448  }
449  }
450  else
451  {
452  /* An error occurred, lwerror should have been called by now */
453  ptarray_free(ptarray);
454  return NULL;
455  }
456  }
457  getPoint4d_p(icurve->points, icurve->points->npoints-1, &p1);
458  ptarray_append_point(ptarray, &p1, LW_FALSE);
459 
460  oline = lwline_construct(icurve->srid, NULL, ptarray);
461  return oline;
462 }
#define LW_FALSE
Definition: liblwgeom.h:77
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
POINTARRAY * ptarray_construct_empty(char hasz, char hasm, uint32_t maxpoints)
Create a new POINTARRAY with no points.
Definition: ptarray.c:70
#define FLAGS_GET_M(flags)
Definition: liblwgeom.h:141
int getPoint4d_p(const POINTARRAY *pa, uint32_t n, POINT4D *point)
Definition: lwgeom_api.c:123
void ptarray_free(POINTARRAY *pa)
Definition: ptarray.c:328
int ptarray_append_point(POINTARRAY *pa, const POINT4D *pt, int allow_duplicates)
Append a point to the end of an existing POINTARRAY If allow_duplicate is LW_FALSE,...
Definition: ptarray.c:156
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
LWLINE * lwline_construct(int srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
static int lwarc_linearize(POINTARRAY *to, const POINT4D *p1, const POINT4D *p2, const POINT4D *p3, double tol, LW_LINEARIZE_TOLERANCE_TYPE tolerance_type, int flags)
Segmentize an arc.
Definition: lwstroke.c:135
int32_t srid
Definition: liblwgeom.h:446
POINTARRAY * points
Definition: liblwgeom.h:447
uint32_t npoints
Definition: liblwgeom.h:374
uint8_t flags
Definition: liblwgeom.h:372
unsigned int uint32_t
Definition: uthash.h:78

References POINTARRAY::flags, FLAGS_GET_M, FLAGS_GET_Z, getPoint4d_p(), LW_FALSE, LW_TRUE, lwarc_linearize(), LWDEBUG, LWDEBUGF, lwline_construct(), POINTARRAY::npoints, LWCIRCSTRING::points, ptarray_append_point(), ptarray_construct_empty(), ptarray_free(), and LWCIRCSTRING::srid.

Referenced by lwcollection_linearize(), lwcompound_linearize(), lwcurve_linearize(), lwcurvepoly_linearize(), and lwmcurve_linearize().

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