PostGIS  3.0.6dev-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 891 of file lwstroke.c.

892 {
893  POINT2D center;
894  POINT2D *t1 = (POINT2D*)a1;
895  POINT2D *t2 = (POINT2D*)a2;
896  POINT2D *t3 = (POINT2D*)a3;
897  POINT2D *tb = (POINT2D*)b;
898  double radius = lw_arc_center(t1, t2, t3, &center);
899  double b_distance, diff;
900 
901  /* Co-linear a1/a2/a3 */
902  if ( radius < 0.0 )
903  return LW_FALSE;
904 
905  b_distance = distance2d_pt_pt(tb, &center);
906  diff = fabs(radius - b_distance);
907  LWDEBUGF(4, "circle_radius=%g, b_distance=%g, diff=%g, percentage=%g", radius, b_distance, diff, diff/radius);
908 
909  /* Is the point b on the circle? */
910  if ( diff < EPSILON_SQLMM )
911  {
912  int a2_side = lw_segment_side(t1, t3, t2);
913  int b_side = lw_segment_side(t1, t3, tb);
914  double angle1 = lw_arc_angle(t1, t2, t3);
915  double angle2 = lw_arc_angle(t2, t3, tb);
916 
917  /* Is the angle similar to the previous one ? */
918  diff = fabs(angle1 - angle2);
919  LWDEBUGF(4, " angle1: %g, angle2: %g, diff:%g", angle1, angle2, diff);
920  if ( diff > EPSILON_SQLMM )
921  {
922  return LW_FALSE;
923  }
924 
925  /* Is the point b on the same side of a1/a3 as the mid-point a2 is? */
926  /* If not, it's in the unbounded part of the circle, so it continues the arc, return true. */
927  if ( b_side != a2_side )
928  return LW_TRUE;
929  }
930  return LW_FALSE;
931 }
#define LW_FALSE
Definition: liblwgeom.h:108
double distance2d_pt_pt(const POINT2D *p1, const POINT2D *p2)
Definition: measures.c:2397
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:107
#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:229
int lw_segment_side(const POINT2D *p1, const POINT2D *p2, const POINT2D *q)
lw_segment_side()
Definition: lwalgorithm.c:65
#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:869

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: