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

◆ lw_seg_length()

double lw_seg_length ( const POINT2D A1,
const POINT2D A2 
)

Returns the length of a linear segment.

Definition at line 80 of file lwalgorithm.c.

81{
82 return sqrt((A1->x-A2->x)*(A1->x-A2->x)+(A1->y-A2->y)*(A1->y-A2->y));
83}
double y
Definition liblwgeom.h:390
double x
Definition liblwgeom.h:390

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