div

inline operator fun div(other: Vector2F): ComplexF

Divides this vector by the other vector.

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

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


inline operator fun div(other: Float): Vector2F

Divides this vector by the other scalar.

The result magnitude is this.magnitude / other.


inline operator fun div(other: ComplexF): Vector2F

Divides this vector by the other complex number.

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

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