PostGIS  2.5.7dev-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 74 of file lwalgorithm.c.

75 {
76  return sqrt((A1->x-A2->x)*(A1->x-A2->x)+(A1->y-A2->y)*(A1->y-A2->y));
77 }
double y
Definition: liblwgeom.h:331
double x
Definition: liblwgeom.h:331

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