PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ dot_product_side()

static int dot_product_side ( const POINT3D p,
const POINT3D q 
)
static

Utility function for edge_intersects(), signum with a tolerance in determining if the value is zero.

Definition at line 3526 of file lwgeodetic.c.

3527 {
3528  double dp = dot_product(p, q);
3529 
3530  if ( FP_IS_ZERO(dp) )
3531  return 0;
3532 
3533  return dp < 0.0 ? -1 : 1;
3534 }
#define FP_IS_ZERO(A)
static double dot_product(const POINT3D *p1, const POINT3D *p2)
Convert cartesian coordinates on unit sphere to lon/lat coordinates static void cart2ll(const POINT3D...
Definition: lwgeodetic.c:446

References dot_product(), and FP_IS_ZERO.

Referenced by edge_intersects().

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