Blob Blame Raw
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Все функции - Helianthus</title>
</head>
<body>
<div class="navigation">
  <p><a href="index.html">Helianthus</a></p>
  <p><a href="common.html">Запуск и общие функции</a></p>
  <p><a href="input.html">Клавиатура и мышь</a></p>
  <p><a href="drawing.html">Рисование</a></p>
  <p><a href="sprites.html">Спрайты</a></p>
  <p><a href="groups.html">Группы спрайтов</a></p>
  <p><a href="camera.html">Камера</a></p>
  <p><a href="sound.html">Звук</a></p>
  <hr />
  <p><a href="functions.html">Все функции</a></p>
</div>
<div class="content">
<h1>Все функции</h1>
<h2><a href="common.html">Запуск и общие функции</a></h2>
<a href="common.html#worldSetInit">worldSetInit</a><br />
<a href="common.html#worldSetDraw">worldSetDraw</a><br />
<a href="common.html#worldRun">worldRun</a><br />
<a href="common.html#worldStop">worldStop</a><br />
<a href="common.html#worldGetWidth">worldGetWidth</a><br />
<a href="common.html#worldSetWidth">worldSetWidth</a><br />
<a href="common.html#worldGetHeight">worldGetHeight</a><br />
<a href="common.html#worldSetHeight">worldSetHeight</a><br />
<a href="common.html#worldGetFrameRate">worldGetFrameRate</a><br />
<a href="common.html#worldSetFrameRate">worldSetFrameRate</a><br />
<a href="common.html#worldGetTimeStep">worldGetTimeStep</a><br />
<a href="common.html#worldGetFrameCount">worldGetFrameCount</a><br />
<a href="common.html#worldGetSeconds">worldGetSeconds</a><br />
<a href="common.html#randomNumber">randomNumber</a><br />
<a href="common.html#randomFloat">randomFloat</a><br />
<h2><a href="input.html">Клавиатура и мышь</a></h2>
<a href="input.html#keyDown">keyDown</a><br />
<a href="input.html#keyWentDown">keyWentDown</a><br />
<a href="input.html#keyWentUp">keyWentUp</a><br />
<a href="input.html#mouseDown">mouseDown</a><br />
<a href="input.html#mouseWentDown">mouseWentDown</a><br />
<a href="input.html#mouseWentUp">mouseWentUp</a><br />
<a href="input.html#mouseDidMove">mouseDidMove</a><br />
<a href="input.html#mouseX">mouseX</a><br />
<a href="input.html#mouseY">mouseY</a><br />
<h2><a href="drawing.html">Рисование</a></h2>
<a href="drawing.html#background">background</a><br />
<a href="drawing.html#fill">fill</a><br />
<a href="drawing.html#noFill">noFill</a><br />
<a href="drawing.html#stroke">stroke</a><br />
<a href="drawing.html#noStroke">noStroke</a><br />
<a href="drawing.html#strokeWeight">strokeWeight</a><br />
<a href="drawing.html#rgb">rgb</a><br />
<a href="drawing.html#rgba">rgba</a><br />
<a href="drawing.html#moveTo">moveTo</a><br />
<a href="drawing.html#lineTo">lineTo</a><br />
<a href="drawing.html#resetPath">resetPath</a><br />
<a href="drawing.html#closePath">closePath</a><br />
<a href="drawing.html#strokePath">strokePath</a><br />
<a href="drawing.html#rect">rect</a><br />
<a href="drawing.html#ellipse">ellipse</a><br />
<a href="drawing.html#arc">arc</a><br />
<a href="drawing.html#arcPath">arcPath</a><br />
<a href="drawing.html#line">line</a><br />
<a href="drawing.html#point">point</a><br />
<a href="drawing.html#regularPolygon">regularPolygon</a><br />
<a href="drawing.html#text">text</a><br />
<a href="drawing.html#textAlign">textAlign</a><br />
<a href="drawing.html#textFont">textFont</a><br />
<a href="drawing.html#textSize">textSize</a><br />
<h2><a href="sprites.html">Спрайты</a></h2>
<a href="sprites.html#createSprite">createSprite</a><br />
<a href="sprites.html#createSpriteEx">createSpriteEx</a><br />
<a href="sprites.html#spriteDestroy">spriteDestroy</a><br />
<a href="sprites.html#spriteDestroyTimer">spriteDestroyTimer</a><br />
<a href="sprites.html#spriteGetX">spriteGetX</a><br />
<a href="sprites.html#spriteGetY">spriteGetY</a><br />
<a href="sprites.html#spriteSetX">spriteSetX</a><br />
<a href="sprites.html#spriteSetY">spriteSetY</a><br />
<a href="sprites.html#spriteGetVelocityX">spriteGetVelocityX</a><br />
<a href="sprites.html#spriteGetVelocityY">spriteGetVelocityY</a><br />
<a href="sprites.html#spriteSetVelocityX">spriteSetVelocityX</a><br />
<a href="sprites.html#spriteSetVelocityY">spriteSetVelocityY</a><br />
<a href="sprites.html#spriteSetVelocityXY">spriteSetVelocityXY</a><br />
<a href="sprites.html#spriteSetSpeedAndDirection">spriteSetSpeedAndDirection</a><br />
<a href="sprites.html#spriteGetSpeed">spriteGetSpeed</a><br />
<a href="sprites.html#spriteGetDirection">spriteGetDirection</a><br />
<a href="sprites.html#spriteGetWidth">spriteGetWidth</a><br />
<a href="sprites.html#spriteSetWidth">spriteSetWidth</a><br />
<a href="sprites.html#spriteGetHeight">spriteGetHeight</a><br />
<a href="sprites.html#spriteSetHeight">spriteSetHeight</a><br />
<a href="sprites.html#spriteGetScale">spriteGetScale</a><br />
<a href="sprites.html#spriteSetScale">spriteSetScale</a><br />
<a href="sprites.html#spriteGetScaledWidth">spriteGetScaledWidth</a><br />
<a href="sprites.html#spriteGetScaledHeight">spriteGetScaledHeight</a><br />
<a href="sprites.html#spriteGetRotation">spriteGetRotation</a><br />
<a href="sprites.html#spriteSetRotation">spriteSetRotation</a><br />
<a href="sprites.html#spriteGetRotationSpeed">spriteGetRotationSpeed</a><br />
<a href="sprites.html#spriteSetRotationSpeed">spriteSetRotationSpeed</a><br />
<a href="sprites.html#spriteGetRotateToDirection">spriteGetRotateToDirection</a><br />
<a href="sprites.html#spriteSetRotateToDirection">spriteSetRotateToDirection</a><br />
<a href="sprites.html#spriteGetMirrorX">spriteGetMirrorX</a><br />
<a href="sprites.html#spriteSetMirrorX">spriteSetMirrorX</a><br />
<a href="sprites.html#spriteGetMirrorY">spriteGetMirrorY</a><br />
<a href="sprites.html#spriteSetMirrorY">spriteSetMirrorY</a><br />
<a href="sprites.html#spriteGetDepth">spriteGetDepth</a><br />
<a href="sprites.html#spriteSetDepth">spriteSetDepth</a><br />
<a href="sprites.html#spriteGetVisible">spriteGetVisible</a><br />
<a href="sprites.html#spriteSetVisible">spriteSetVisible</a><br />
<a href="sprites.html#spriteGetTag">spriteGetTag</a><br />
<a href="sprites.html#spriteSetTag">spriteSetTag</a><br />
<a href="sprites.html#spriteGetDebug">spriteGetDebug</a><br />
<a href="sprites.html#spriteSetDebug">spriteSetDebug</a><br />
<a href="sprites.html#spriteOverlap">spriteOverlap</a><br />
<a href="sprites.html#spriteCollide">spriteCollide</a><br />
<a href="sprites.html#spriteBounceOff">spriteBounceOff</a><br />
<a href="sprites.html#spritePush">spritePush</a><br />
<a href="sprites.html#spriteCollideEx">spriteCollideEx</a><br />
<a href="sprites.html#spriteGetBounciness">spriteGetBounciness</a><br />
<a href="sprites.html#spriteSetBounciness">spriteSetBounciness</a><br />
<a href="sprites.html#spriteSetCollider">spriteSetCollider</a><br />
<a href="sprites.html#spriteSetColliderCircle">spriteSetColliderCircle</a><br />
<a href="sprites.html#spriteSetColliderRectangle">spriteSetColliderRectangle</a><br />
<a href="sprites.html#spriteSetColliderEx">spriteSetColliderEx</a><br />
<a href="sprites.html#spriteSetAnimation">spriteSetAnimation</a><br />
<a href="sprites.html#spriteSetNoAnimation">spriteSetNoAnimation</a><br />
<a href="sprites.html#spritePlay">spritePlay</a><br />
<a href="sprites.html#spritePause">spritePause</a><br />
<a href="sprites.html#spriteNextFrame">spriteNextFrame</a><br />
<a href="sprites.html#spriteSetFrame">spriteSetFrame</a><br />
<a href="sprites.html#spriteSetShapeColor">spriteSetShapeColor</a><br />
<a href="sprites.html#spriteSetTintColor">spriteSetTintColor</a><br />
<a href="sprites.html#spritePointTo">spritePointTo</a><br />
<a href="sprites.html#mouseIsOver">mouseIsOver</a><br />
<a href="sprites.html#mousePressedOver">mousePressedOver</a><br />
<a href="sprites.html#worldGetSpriteCount">worldGetSpriteCount</a><br />
<a href="sprites.html#worldGetSprite">worldGetSprite</a><br />
<a href="sprites.html#drawSprites">drawSprites</a><br />
<h2><a href="groups.html">Группы спрайтов</a></h2>
<a href="groups.html#createGroup">createGroup</a><br />
<a href="groups.html#createEdgesGroup">createEdgesGroup</a><br />
<a href="groups.html#createEdgesGroupEx">createEdgesGroupEx</a><br />
<a href="groups.html#groupDestroy">groupDestroy</a><br />
<a href="groups.html#groupDestroyEx">groupDestroyEx</a><br />
<a href="groups.html#groupAdd">groupAdd</a><br />
<a href="groups.html#groupRemove">groupRemove</a><br />
<a href="groups.html#groupClear">groupClear</a><br />
<a href="groups.html#groupClearEx">groupClearEx</a><br />
<a href="groups.html#groupContains">groupContains</a><br />
<a href="groups.html#groupGetCount">groupGetCount</a><br />
<a href="groups.html#groupGet">groupGet</a><br />
<a href="groups.html#groupOverlap">groupOverlap</a><br />
<a href="groups.html#groupCollide">groupCollide</a><br />
<a href="groups.html#groupBounceOff">groupBounceOff</a><br />
<a href="groups.html#groupPush">groupPush</a><br />
<a href="groups.html#groupCollideEx">groupCollideEx</a><br />
<a href="groups.html#groupOverlapGroup">groupOverlapGroup</a><br />
<a href="groups.html#groupCollideGroup">groupCollideGroup</a><br />
<a href="groups.html#groupBounceOffGroup">groupBounceOffGroup</a><br />
<a href="groups.html#groupPushGroup">groupPushGroup</a><br />
<a href="groups.html#groupCollideGroupEx">groupCollideGroupEx</a><br />
<a href="groups.html#groupOverlapBetween">groupOverlapBetween</a><br />
<a href="groups.html#groupCollideBetween">groupCollideBetween</a><br />
<a href="groups.html#groupCollideBetweenEx">groupCollideBetweenEx</a><br />
<a href="groups.html#groupGetMinDepth">groupGetMinDepth</a><br />
<a href="groups.html#groupGetMaxDepth">groupGetMaxDepth</a><br />
<a href="groups.html#groupDestroyEach">groupDestroyEach</a><br />
<a href="groups.html#groupDestroyTimerEach">groupDestroyTimerEach</a><br />
<a href="groups.html#groupSetVisibleEach">groupSetVisibleEach</a><br />
<a href="groups.html#groupSetWidthEach">groupSetWidthEach</a><br />
<a href="groups.html#groupSetHeightEach">groupSetHeightEach</a><br />
<a href="groups.html#groupSetDepthEach">groupSetDepthEach</a><br />
<a href="groups.html#groupSetVelocityXEach">groupSetVelocityXEach</a><br />
<a href="groups.html#groupSetVelocityYEach">groupSetVelocityYEach</a><br />
<a href="groups.html#groupSetVelocityEach">groupSetVelocityEach</a><br />
<a href="groups.html#groupSetLifetimeEach">groupSetLifetimeEach</a><br />
<a href="groups.html#groupSetRotateToDirectionEach">groupSetRotateToDirectionEach</a><br />
<a href="groups.html#groupSetRotationEach">groupSetRotationEach</a><br />
<a href="groups.html#groupSetRotationSpeedEach">groupSetRotationSpeedEach</a><br />
<a href="groups.html#groupSetScaleEach">groupSetScaleEach</a><br />
<a href="groups.html#groupSetMirrorXEach">groupSetMirrorXEach</a><br />
<a href="groups.html#groupSetMirrorYEach">groupSetMirrorYEach</a><br />
<a href="groups.html#groupSetTagEach">groupSetTagEach</a><br />
<a href="groups.html#groupPointToEach">groupPointToEach</a><br />
<a href="groups.html#groupSetSpeedAndDirectionEach">groupSetSpeedAndDirectionEach</a><br />
<a href="groups.html#groupSetAnimationEach">groupSetAnimationEach</a><br />
<a href="groups.html#groupSetNoAnimationEach">groupSetNoAnimationEach</a><br />
<a href="groups.html#groupSetShapeColorEach">groupSetShapeColorEach</a><br />
<a href="groups.html#groupSetTintColorEach">groupSetTintColorEach</a><br />
<a href="groups.html#groupSetColliderEach">groupSetColliderEach</a><br />
<a href="groups.html#groupSetColliderCircleEach">groupSetColliderCircleEach</a><br />
<a href="groups.html#groupSetColliderRectangleEach">groupSetColliderRectangleEach</a><br />
<a href="groups.html#groupSetColliderEachEx">groupSetColliderEachEx</a><br />
<h2><a href="camera.html">Камера</a></h2>
<a href="camera.html#cameraOn">cameraOn</a><br />
<a href="camera.html#cameraOff">cameraOff</a><br />
<a href="camera.html#cameraIsActive">cameraIsActive</a><br />
<a href="camera.html#cameraMouseX">cameraMouseX</a><br />
<a href="camera.html#cameraMouseY">cameraMouseY</a><br />
<a href="camera.html#cameraGetX">cameraGetX</a><br />
<a href="camera.html#cameraGetY">cameraGetY</a><br />
<a href="camera.html#cameraSetX">cameraSetX</a><br />
<a href="camera.html#cameraSetY">cameraSetY</a><br />
<a href="camera.html#cameraGetZoom">cameraGetZoom</a><br />
<a href="camera.html#cameraSetZoom">cameraSetZoom</a><br />
<h2><a href="sound.html">Звук</a></h2>
<a href="sound.html#createSound">createSound</a><br />
<a href="sound.html#soundDestroy">soundDestroy</a><br />
<a href="sound.html#soundPlay">soundPlay</a><br />
<a href="sound.html#soundStop">soundStop</a><br />

</div>
</body>
</html>