PostGIS  3.0.6dev-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 656 of file lwgeom_api.c.

657 {
658 #if PARANOIA_LEVEL > 0
659  if (F < 0 || F > 1) lwerror("interpolate_point4d: invalid F (%g)", F);
660 #endif
661  I->x=A->x+((B->x-A->x)*F);
662  I->y=A->y+((B->y-A->y)*F);
663  I->z=A->z+((B->z-A->z)*F);
664  I->m=A->m+((B->m-A->m)*F);
665 }
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
double m
Definition: liblwgeom.h:400
double x
Definition: liblwgeom.h:400
double z
Definition: liblwgeom.h:400
double y
Definition: liblwgeom.h:400

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

Referenced by lwline_interpolate_point_3d(), lwline_interpolate_points(), and ptarray_substring().

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