nuhkoca
10/01/2022, 12:40 PMquadraticBezierTo
, any help is appreciated! Code in threadnuhkoca
10/01/2022, 12:40 PMval triangle = Path().apply {
moveTo(x = x, y = y - indicatorHalfSizeInPx)
lineTo(x = x - indicatorHalfSizeInPx, y = y + indicatorHalfSizeInPx)
lineTo(x = x + indicatorHalfSizeInPx, y = y + indicatorHalfSizeInPx)
lineTo(x = x, y = y - indicatorHalfSizeInPx)
close()
}