times

inline operator fun Matrix.times(m: Matrix): Matrix(source)

Multiplies this Matrix by another matrix and returns the result as a new matrix.


inline operator fun Point.times(scalar: Float): Point(source)
inline operator fun PointF.times(scalar: Float): PointF(source)

Multiplies this point by the specified scalar value and returns the result as a new point.


inline operator fun Rect.times(factor: Int): Rect(source)
inline operator fun RectF.times(factor: Int): RectF(source)
inline operator fun RectF.times(factor: Float): RectF(source)

Returns a new rectangle representing this rectangle's components each scaled by factor.