PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lw_seg_length()

double lw_seg_length ( const POINT2D A1,
const POINT2D A2 
)

Returns the length of a linear segment.

Definition at line 72 of file lwalgorithm.c.

73 {
74  return sqrt((A1->x-A2->x)*(A1->x-A2->x)+(A1->y-A2->y)*(A1->y-A2->y));
75 }
double y
Definition: liblwgeom.h:390
double x
Definition: liblwgeom.h:390

References POINT2D::x, and POINT2D::y.