PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lwline_force_dims()

LWLINE * lwline_force_dims ( const LWLINE lwline,
int  hasz,
int  hasm,
double  zval,
double  mval 
)

Definition at line 496 of file lwline.c.

497{
498 POINTARRAY *pdims = NULL;
499 LWLINE *lineout;
500
501 /* Return 2D empty */
502 if( lwline_is_empty(line) )
503 {
504 lineout = lwline_construct_empty(line->srid, hasz, hasm);
505 }
506 else
507 {
508 pdims = ptarray_force_dims(line->points, hasz, hasm, zval, mval);
509 lineout = lwline_construct(line->srid, NULL, pdims);
510 }
511 lineout->type = line->type;
512 return lineout;
513}
int lwline_is_empty(const LWLINE *line)
POINTARRAY * ptarray_force_dims(const POINTARRAY *pa, int hasz, int hasm, double zval, double mval)
Definition ptarray.c:1188
LWLINE * lwline_construct(int32_t srid, GBOX *bbox, POINTARRAY *points)
Definition lwline.c:42
LWLINE * lwline_construct_empty(int32_t srid, char hasz, char hasm)
Definition lwline.c:55
uint8_t type
Definition liblwgeom.h:486

References lwline_construct(), lwline_construct_empty(), lwline_is_empty(), LWLINE::points, ptarray_force_dims(), LWLINE::srid, and LWLINE::type.

Referenced by lwgeom_force_dims().

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