Vector.Yaxis
- classmethod Vector.Yaxis()[source]
Construct a unit vector along the Y axis.
- Returns:
compas.geometry.Vector
A vector with components
x = 0.0, y = 1.0, z = 0.0
.
Examples
>>> Vector.Yaxis() == [0, 1, 0] True
Site Navigation
Construct a unit vector along the Y axis.
compas.geometry.Vector
A vector with components x = 0.0, y = 1.0, z = 0.0
.
Examples
>>> Vector.Yaxis() == [0, 1, 0]
True