times

inline operator fun times(other: ComplexF): ComplexF

Multiplies this complex number by the other complex number.

The result magnitude is this.magnitude * other.magnitude.

The result phase is this.phase + other.phase.


inline operator fun times(other: Float): ComplexF

Multiplies this complex number by the other real number.

The result magnitude is this.magnitude * other.


inline operator fun times(other: Vector2F): Vector2F

Multiplies this complex number by the other vector.

The result magnitude is this.magnitude * other.magnitude.

The result phase is other.toComplexF.phase - this.phase.