Vector.angle
- Vector.angle(other, degrees=False)[source]
Compute the smallest angle between this vector and another vector.
- Parameters:
- other[float, float, float] |
compas.geometry.Vector
The other vector.
- other[float, float, float] |
- Returns:
- float
The smallest angle between the two vectors.
Examples
>>> u = Vector(1.0, 0.0, 0.0) >>> v = Vector(0.0, 1.0, 0.0) >>> u.angle(v) == 0.5 * math.pi True