PostGIS  2.4.9dev-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 3510 of file lwgeodetic.c.

References dot_product(), and FP_IS_ZERO.

Referenced by edge_intersects().

3511 {
3512  double dp = dot_product(p, q);
3513 
3514  if ( FP_IS_ZERO(dp) )
3515  return 0;
3516 
3517  return dp < 0.0 ? -1 : 1;
3518 }
#define FP_IS_ZERO(A)
static double dot_product(const POINT3D *p1, const POINT3D *p2)
Convert cartesion coordinates on unit sphere to lon/lat coordinates static void cart2ll(const POINT3D...
Definition: lwgeodetic.c:442
Here is the call graph for this function:
Here is the caller graph for this function: