CoronaSDK 2013.1127 | Released: 25 May 2013, 2:00am | What's New | Download Now
These docs are *very* out of date.
You will be redirected to the new docs in a few seconds.
If you are certain you want to see the old docs, click cancel.
Cancel | Continue to new docs
You will be redirected to the new docs in a few seconds.
If you are certain you want to see the old docs, click cancel.
Cancel | Continue to new docs
math.sinh()
Description:
Returns the hyperbolic sine of a value.
Syntax:
math.sinh (x)
Example:
print (math.sinh(1)) ----> 1.1752011936438 -- move a circle along a path local myCircle = display.newCircle( 0, display.viewableContentHeight/2, 10 ) myCircle:setFillColor(250,250,100) local function onFrame(event) myCircle.y = display.viewableContentHeight/2 - math.sinh(15*(myCircle.x/display.viewableContentWidth-0.5)); myCircle.x = (myCircle.x + 5) % display.viewableContentWidth end Runtime:addEventListener( "enterFrame", onFrame )
Parameters:
x
A number.
Returns:
A number.
Remarks:
Supported on operating systems and platforms for build numbers shown:
- Mac OS X:Corona SDK 1.0
- Windows:Corona SDK 2.0
- iOS:Corona SDK 1.0
- Android:Corona SDK 2.0