Searched defs:plus (Results 1 – 3 of 3) sorted by relevance
92 internal operator fun Point.plus(other: Point): Point = Point(x + other.x, y + other.y) in unaryMinus() method
265 operator fun plus(o: Cubic) = Cubic(FloatArray(8) { points[it] + o.points[it] }) in reverse() method in androidx.graphics.shapes.Cubic
458 internal operator fun PointF.plus(operand: PointF): PointF = PointF(x + operand.x, y + operand.y) method