PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ vector_difference()

static void vector_difference ( const POINT3D a,
const POINT3D b,
POINT3D n 
)
static

Calculate the difference of two vectors.

Definition at line 472 of file lwgeodetic.c.

References POINT3D::x, POINT3D::y, and POINT3D::z.

Referenced by edge_distance_to_point(), point_in_cone(), and unit_normal().

473 {
474  n->x = a->x - b->x;
475  n->y = a->y - b->y;
476  n->z = a->z - b->z;
477  return;
478 }
double y
Definition: liblwgeom.h:340
double x
Definition: liblwgeom.h:340
double z
Definition: liblwgeom.h:340
Here is the caller graph for this function: