angle_with#
- Vector3d.angle_with(other: Vector3d, degrees: bool = False) ndarray[source]#
Return the angles between these vectors in other vectors.
Vectors must have compatible shapes for broadcasting to work.
- Parameters:
- other
Another vector.
- degrees
If
True, the given angles are returned in degrees. Default isFalse.
- Returns:
anglesAngles in radians (
degrees=False) or degrees (degrees=True).