PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ interpolate_point4d()

void interpolate_point4d ( const POINT4D A,
const POINT4D B,
POINT4D I,
double  F 
)

Find interpolation point I between point A and point B so that the len(AI) == len(AB)*F and I falls on AB segment.

Example:

F=0.5 : A-—I-—B F=1 : A------—B==I F=0 : A==I------—B F=.2 : A-I----—B

Definition at line 714 of file lwgeom_api.c.

715 {
716 #if PARANOIA_LEVEL > 0
717  if (F < 0 || F > 1) lwerror("interpolate_point4d: invalid F (%g)", F);
718 #endif
719  I->x=A->x+((B->x-A->x)*F);
720  I->y=A->y+((B->y-A->y)*F);
721  I->z=A->z+((B->z-A->z)*F);
722  I->m=A->m+((B->m-A->m)*F);
723 }
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
double m
Definition: liblwgeom.h:355
double x
Definition: liblwgeom.h:355
double z
Definition: liblwgeom.h:355
double y
Definition: liblwgeom.h:355

References lwerror(), POINT4D::m, POINT4D::x, POINT4D::y, and POINT4D::z.

Referenced by lwline_interpolate_points(), and ptarray_substring().

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