times

open operator fun Matrix<T>.times(value: T): Matrix<T>

Multiplies a matrix by its element.

Parameters

<receiver>

the product.

value

the multiplier.

open operator fun T.times(m: Matrix<T>): Matrix<T>

Multiplies an element by a matrix of it.

Parameters

<receiver>

the product.

m

the multiplier.

open operator fun Point<T>.times(value: T): Point<T>

Multiplies a vector by its element.

Parameters

<receiver>

the product.

value

the multiplier.

open operator fun T.times(v: Point<T>): Point<T>

Multiplies an element by a vector of it.

Parameters

<receiver>

the product.

v

the multiplier.