Extensions.kt 403 B

123456789101112
  1. package com.zhpan.bannerview.transform
  2. import android.content.res.Resources
  3. fun Int.toDp(): Int = (this / Resources.getSystem().displayMetrics.density).toInt()
  4. fun Int.toPx(): Int = (this * Resources.getSystem().displayMetrics.density).toInt()
  5. fun Float.cube(): Float = this * this * this
  6. fun Int.cube(): Int = this * this * this
  7. fun Float.sqr(): Float = this * this
  8. fun Int.sqr(): Int = this * this