times

inline operator fun times(other: Vector2F): ComplexF

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.


inline operator fun times(other: Float): Vector2F

Multiplies this vector by the other scalar.

The result magnitude is this.magnitude * other.


inline operator fun times(other: ComplexF): Vector2F

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.