PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ lw_arc_length()

double lw_arc_length ( const POINT2D A1,
const POINT2D A2,
const POINT2D A3 
)

Returns the length of a circular arc segment.

Definition at line 124 of file lwalgorithm.c.

125 {
126  POINT2D C;
127  double radius_A, circumference_A;
128  int a2_side, clockwise;
129  double a1, a3;
130  double angle;
131 
132  if ( lw_arc_is_pt(A1, A2, A3) )
133  return 0.0;
134 
135  radius_A = lw_arc_center(A1, A2, A3, &C);
136 
137  /* Co-linear! Return linear distance! */
138  if ( radius_A < 0 )
139  {
140  double dx = A1->x - A3->x;
141  double dy = A1->y - A3->y;
142  return sqrt(dx*dx + dy*dy);
143  }
144 
145  /* Closed circle! Return the circumference! */
146  circumference_A = M_PI * 2 * radius_A;
147  if ( p2d_same(A1, A3) )
148  return circumference_A;
149 
150  /* Determine the orientation of the arc */
151  a2_side = lw_segment_side(A1, A3, A2);
152 
153  /* The side of the A1/A3 line that A2 falls on dictates the sweep
154  direction from A1 to A3. */
155  if ( a2_side == -1 )
156  clockwise = LW_TRUE;
157  else
158  clockwise = LW_FALSE;
159 
160  /* Angles of each point that defines the arc section */
161  a1 = atan2(A1->y - C.y, A1->x - C.x);
162  a3 = atan2(A3->y - C.y, A3->x - C.x);
163 
164  /* What's the sweep from A1 to A3? */
165  if ( clockwise )
166  {
167  if ( a1 > a3 )
168  angle = a1 - a3;
169  else
170  angle = 2*M_PI + a1 - a3;
171  }
172  else
173  {
174  if ( a3 > a1 )
175  angle = a3 - a1;
176  else
177  angle = 2*M_PI + a3 - a1;
178  }
179 
180  /* Length as proportion of circumference */
181  return circumference_A * (angle / (2*M_PI));
182 }
#define LW_FALSE
Definition: liblwgeom.h:94
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:93
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:234
int lw_segment_side(const POINT2D *p1, const POINT2D *p2, const POINT2D *q)
lw_segment_side()
Definition: lwalgorithm.c:70
int lw_arc_is_pt(const POINT2D *A1, const POINT2D *A2, const POINT2D *A3)
Returns true if arc A is actually a point (all vertices are the same) .
Definition: lwalgorithm.c:111
int p2d_same(const POINT2D *p1, const POINT2D *p2)
Definition: lwalgorithm.c:57
double y
Definition: liblwgeom.h:390
double x
Definition: liblwgeom.h:390

References lw_arc_center(), lw_arc_is_pt(), LW_FALSE, lw_segment_side(), LW_TRUE, p2d_same(), POINT2D::x, and POINT2D::y.

Referenced by ptarray_arc_length_2d(), and test_lw_arc_length().

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