new blocks drawer WIP

This commit is contained in:
minjaesong
2017-08-29 21:06:30 +09:00
parent d2508d0ccd
commit 5f9b46ec63
5 changed files with 72 additions and 60 deletions

View File

@@ -1466,6 +1466,7 @@ inline fun Double.floorInt() = Math.floor(this).toInt()
inline fun Float.floorInt() = FastMath.floor(this)
inline fun Float.floor() = FastMath.floor(this).toFloat()
inline fun Double.ceilInt() = Math.ceil(this).toInt()
inline fun Float.ceil(): Float = FastMath.ceil(this).toFloat()
inline fun Float.ceilInt() = FastMath.ceil(this)
inline fun Double.round() = Math.round(this).toDouble()
inline fun Double.floor() = Math.floor(this)