times
Multiplies this vector by the other vector.
The result magnitude is this.magnitude * other.magnitude.
The result phase is other.toComplexF.phase - this.toComplexF.phase.
This type of vector multiplication is also known as the geometric product.
Multiplies this vector by the other scalar.
The result magnitude is this.magnitude * other.
Multiplies this vector by the other complex number.
The result magnitude is this.magnitude * other.magnitude.
The result phase is this.toComplexF.phase + other.phase.