Skip to Content
Lua Quick Start Guide
book

Lua Quick Start Guide

by Gabor Szauer
July 2018
Beginner
202 pages
5h 42m
English
Packt Publishing
Content preview from Lua Quick Start Guide

Everything else

There are a number of useful math-related functions Lua offers that do not fit into any of the preceding categories. These functions are listed here, in no particular order:

  • math.ceil(v): rounds v up to the nearest integer
  • math.floor(v): rounds v down to the nearest integer
  • math.fmod(x, y): returns the remainder of the division x / y
  • math.modf(v): returns two values, the integer part of v and the factoral part of v
  • math.sqrt(v): returns the square root of v
  • math.type(variable): returns the strings integer, float, or nil
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Lua Programming

Beginning Lua Programming

Kurt Jung, Aaron Brown
Vim Masterclass

Vim Masterclass

Jason Cannon

Publisher Resources

ISBN: 9781789343229Supplemental Content