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
Site Navigation
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