Vector.copy
-
Vector.
copy
()[source] Make a copy of this vector.
- Returns
compas.geometry.Vector
– The copy.
Examples
>>> u = Vector(0.0, 0.0, 0.0) >>> v = u.copy() >>> u == v True >>> u is v False
Vector.
copy
()[source]Make a copy of this vector.
compas.geometry.Vector
– The copy.
Examples
>>> u = Vector(0.0, 0.0, 0.0)
>>> v = u.copy()
>>> u == v
True
>>> u is v
False