fun arcTransformsAfterRestore()

in platf-android/src/androidInstrumentedTest/kotlin/org/jetbrains/letsPlot/android/canvas/ContextPath2dTest.kt [367:384]


    fun arcTransformsAfterRestore() {
        val (canvas, ctx) = createCanvas()
        ctx.fillStyle = fillColor

        ctx.save()
        ctx.translate(50.0, 50.0)
        ctx.beginPath()
        ctx.scale(1.0, 0.5)
        ctx.arc(0.0, 0.0, 50.0, 0.0, 2 * PI)
        ctx.restore()

        ctx.fill()

        imageComparer.assertImageEquals(
            expectedFileName = "arc_transform_after_restore.bmp",
            actualBitmap = canvas.img
        )
    }