mihon/app/src/main/java/eu/kanade/tachiyomi/util/ViewExtensions.kt

20 lines
336 B
Kotlin
Raw Normal View History

2016-03-19 10:39:19 -04:00
package eu.kanade.tachiyomi.util
import android.graphics.Point
import android.view.View
/**
* Returns coordinates of view.
* Used for animation
*
* @return coordinates of view
*/
fun View.getCoordinates(): Point
{
var cx = (this.left + this.right) / 2;
var cy = (this.top + this.bottom) / 2;
return Point(cx, cy)
}