revanced-integrations/app/src/main/java/app/revanced/integrations/youtube/swipecontrols/misc/Point.kt

18 lines
308 B
Kotlin
Raw Normal View History

package app.revanced.integrations.youtube.swipecontrols.misc
import android.view.MotionEvent
/**
* a simple 2D point class
*/
data class Point(
val x: Int,
2024-04-01 00:34:46 +02:00
val y: Int
)
/**
* convert the motion event coordinates to a point
*/
fun MotionEvent.toPoint(): Point =
Point(x.toInt(), y.toInt())