Compute an angle in 3D space
get_3d_angle(x1, y1, z1, x2, y2, z2, x3, y3, z3)
x-coordinate of first point
y-coordinate of first point
z-coordinate of first point
x-coordinate of second point (vertex)
y-coordinate of second point (vertex)
y-coordinate of second point (vertex)
x-coordinate of third point
y-coordinate of third point
z-coordinate of third point
A numeric vector that provides the angular measurement in degrees.
Everything supplied to arguments must be numeric values or vectors of numeric values. The second point (x2, y2, z2) is treated as the vertex, and the angle between the three points in 3D space is computed.
Other mathematical functions:
calc_min_dist_v()
,
deg_2_rad()
,
find_curve_elbow()
,
get_2d_angle()
,
get_3d_cross_prod()
,
get_dist_point_line()
,
get_traj_velocities()
,
get_velocity()
,
rad_2_deg()
get_3d_angle(
0, 1, 0,
0, 0, 0,
1, 0, 0)
#> [1] 90