Skip to content

Instantly share code, notes, and snippets.

@kwmt
Created July 27, 2020 06:22
Show Gist options
  • Save kwmt/60964abd7eecbf0dc384c441abab0912 to your computer and use it in GitHub Desktop.
Save kwmt/60964abd7eecbf0dc384c441abab0912 to your computer and use it in GitHub Desktop.
android.graphic.Rectを回転させるサンプル
private fun Rect.rotateRect(degree:Float): Rect {
val rectF = this.toRectF()
val matrix = Matrix()
matrix.setRotate(degree, rectF.centerX(), rectF.centerY())
matrix.mapRect(rectF)
return rectF.toRect()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment