angle_points_xy
- compas.geometry.angle_points_xy(a, b, c, deg=False)[source]
Compute the smallest angle between the vectors defined by the XY components of three points.
- Parameters
a (sequence of float) – XY(Z) coordinates of a 2D or 3D point (Z will be ignored).
b (sequence of float)) – XY(Z) coordinates of a 2D or 3D point (Z will be ignored).
c (sequence of float)) – XY(Z) coordinates of a 2D or 3D point (Z will be ignored).
deg (boolean) – returns angle in degrees if True
- Returns
float – The smallest angle between the vectors in radians (in degrees if deg == True). The angle is always positive.
Notes
The vectors are defined in the following way
\[\begin{split}\mathbf{u} = \mathbf{b} - \mathbf{a} \\ \mathbf{v} = \mathbf{c} - \mathbf{a}\end{split}\]Z components may be provided, but are simply ignored.