div

operator fun div(other: ComplexF): ComplexF

Divides 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 div(other: Float): ComplexF

Divides this complex number by the other real number.

The result magnitude is this.magnitude / other.


inline operator fun div(other: Vector2F): Vector2F

Divides this complex number by the other vector.

The result magnitude is this.magnitude / other.magnitude.

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