Return a copy multiplied by the provided scalar
(self, scale: float)
| 156 | return self.add(v) |
| 157 | |
| 158 | def multiply(self, scale: float) -> "Vector": |
| 159 | """Return a copy multiplied by the provided scalar""" |
| 160 | return Vector(self.wrapped.Multiplied(scale)) |
| 161 | |
| 162 | def __mul__(self, scale: float) -> "Vector": |
| 163 | return self.multiply(scale) |
no test coverage detected