PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ pt_continues_arc()

static int pt_continues_arc ( const POINT4D a1,
const POINT4D a2,
const POINT4D a3,
const POINT4D b 
)
static

Returns LW_TRUE if b is on the arc formed by a1/a2/a3, but not within that portion already described by a1/a2/a3.

Definition at line 800 of file lwstroke.c.

801 {
802  POINT2D center;
803  POINT2D *t1 = (POINT2D*)a1;
804  POINT2D *t2 = (POINT2D*)a2;
805  POINT2D *t3 = (POINT2D*)a3;
806  POINT2D *tb = (POINT2D*)b;
807  double radius = lw_arc_center(t1, t2, t3, &center);
808  double b_distance, diff;
809 
810  /* Co-linear a1/a2/a3 */
811  if ( radius < 0.0 )
812  return LW_FALSE;
813 
814  b_distance = distance2d_pt_pt(tb, &center);
815  diff = fabs(radius - b_distance);
816  LWDEBUGF(4, "circle_radius=%g, b_distance=%g, diff=%g, percentage=%g", radius, b_distance, diff, diff/radius);
817 
818  /* Is the point b on the circle? */
819  if ( diff < EPSILON_SQLMM )
820  {
821  int a2_side = lw_segment_side(t1, t3, t2);
822  int b_side = lw_segment_side(t1, t3, tb);
823  double angle1 = lw_arc_angle(t1, t2, t3);
824  double angle2 = lw_arc_angle(t2, t3, tb);
825 
826  /* Is the angle similar to the previous one ? */
827  diff = fabs(angle1 - angle2);
828  LWDEBUGF(4, " angle1: %g, angle2: %g, diff:%g", angle1, angle2, diff);
829  if ( diff > EPSILON_SQLMM )
830  {
831  return LW_FALSE;
832  }
833 
834  /* Is the point b on the same side of a1/a3 as the mid-point a2 is? */
835  /* If not, it's in the unbounded part of the circle, so it continues the arc, return true. */
836  if ( b_side != a2_side )
837  return LW_TRUE;
838  }
839  return LW_FALSE;
840 }
#define LW_FALSE
Definition: liblwgeom.h:77
double distance2d_pt_pt(const POINT2D *p1, const POINT2D *p2)
Definition: measures.c:2314
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
#define EPSILON_SQLMM
Tolerance used to determine equality.
double lw_arc_center(const POINT2D *p1, const POINT2D *p2, const POINT2D *p3, POINT2D *result)
Determines the center of the circle defined by the three given points.
Definition: lwalgorithm.c:228
int lw_segment_side(const POINT2D *p1, const POINT2D *p2, const POINT2D *q)
lw_segment_side()
Definition: lwalgorithm.c:64
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
static double lw_arc_angle(const POINT2D *a, const POINT2D *b, const POINT2D *c)
Return ABC angle in radians TODO: move to lwalgorithm.
Definition: lwstroke.c:778

References distance2d_pt_pt(), EPSILON_SQLMM, lw_arc_angle(), lw_arc_center(), LW_FALSE, lw_segment_side(), LW_TRUE, and LWDEBUGF.

Referenced by pta_unstroke().

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