Type Function Library math.* Return value Number Revision 2017.3060 Keywords hyperbolic sine, sinh, sine, sin See also math.cosh()
math.sin()
Returns the hyperbolic sine of x
.
-- move a circle along a path local myCircle = display.newCircle( 0, display.viewableContentHeight/2, 20 ) myCircle:setFillColor( 1, 0, 0 ) 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 )