Home
last modified time | relevance | path

Searched defs:plus (Results 1 – 3 of 3) sorted by relevance

/graphics/graphics-shapes/src/commonMain/kotlin/androidx/graphics/shapes/
DPoint.kt92 internal operator fun Point.plus(other: Point): Point = Point(x + other.x, y + other.y) in unaryMinus() method
DCubic.kt265 operator fun plus(o: Cubic) = Cubic(FloatArray(8) { points[it] + o.points[it] }) in reverse() method in androidx.graphics.shapes.Cubic
/graphics/integration-tests/testapp/src/main/java/androidx/graphics/shapes/test/
DCustomShapeActivity.kt458 internal operator fun PointF.plus(operand: PointF): PointF = PointF(x + operand.x, y + operand.y) method