times

operator fun Point.times(times: Double): Point

Multiply this Point by a given amount by multiplying the x and y coordinates.

Important: This is a Public Preview API. It may be changed or removed at any time.

Return

A new Point, the result of the multiplication.

Parameters

times

The multiplier.


operator fun PointF.times(times: Double): PointF

Multiply this PointF by a given amount by multiplying the x and y coordinates.

Important: This is a Public Preview API. It may be changed or removed at any time.

Return

A new PointF, the result of the multiplication.

Parameters

times

The multiplier.