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

◆ y_to_z()

void y_to_z ( POINT3D p)

Definition at line 658 of file lwgeodetic.c.

659{
660 double tmp = p->z;
661 p->z = p->y;
662 p->y = tmp;
663}
double z
Definition liblwgeom.h:402
double y
Definition liblwgeom.h:402

References POINT3D::y, and POINT3D::z.