Lua 03. math
LUA / 2012. 3. 5. 10:33
수학 함수들은 math 테이블에 들어있다.
math.abs math.acos math.asin math.atan math.atan2
math.ceil math.cos math.deg math.exp math.floor
math.log math.log10 math.max math.min math.mod
math.pow math.rad math.sin math.sqrt math.tan
math.frexp math.ldexp math.random math.randomseed
math.pi
실수를 정수로...
floor 함수를 활용한다.
반올림이 필요할 경우 0.5 를 더한 뒤 floor 함수를 사용하면 될 것이다.
'LUA' 카테고리의 다른 글
루아(LUA) 강좌 자료 (5) | 2012.03.05 |
---|---|
Lua 04. 문자열 (1) | 2012.03.05 |
Lua 02. 함수 (1) | 2012.03.05 |
Lua 01. 문법 (0) | 2012.03.05 |
Luci Reference: Templates (3) | 2012.02.17 |