copies this vector and returns it.
(self)
| 127 | raise Exception("invalid operand!") |
| 128 | |
| 129 | def copy(self) -> Vector: |
| 130 | """ |
| 131 | copies this vector and returns it. |
| 132 | """ |
| 133 | return Vector(self.__components) |
| 134 | |
| 135 | def component(self, i: int) -> float: |
| 136 | """ |