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

Changing numbers

Sometimes, it's useful to convert numbers, and for this there are four conversion functions. There are functions to convert between degrees and radians, to get the absolute value of an integer, and to round a floating point number to an integer.

  • math.deg(v) converts a number from radians to degrees
  • math.rad(v) converts a number from degrees to radians
  • math.abs(v) returns the absolute value of the provided number
  • math.tointeger(v): if v is convertible to an integer, an integer is returned, otherwise 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