GameDev.tv
Math - rounding, floor, ceiling
Other Courses
Talk
math
,
2a_ia_mfg
S_C1
August 11, 2020, 5:07am
1
x = 6.283
math.floor(x)
6
math.ceil(x)
7
round(x,1)
6.3
round(x,2)
6.28
1 Like
garypettie
August 11, 2020, 12:22pm
2
Nice work
@S_C1
.