Skip to content
This repository has been archived by the owner on Jun 6, 2020. It is now read-only.

Typo fix. #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion learning/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h3>Basic Syntax</h3>

<p>A brief look at the structure of a Processing sketch reveals how easy it is to program interactive visualizations.</p>

<p>As with any language, you begin by defining your global variables. Then you create a <b class="pre function">setup()</b> function, where you control the visualization's properties, like the canvas size, frame rate and perhaps variables such as the stoke-weight or background-color.</p>
<p>As with any language, you begin by defining your global variables. Then you create a <b class="pre function">setup()</b> function, where you control the visualization's properties, like the canvas size, frame rate and perhaps variables such as the stroke-weight or background-color.</p>

<p>The next step is to create your <b class="pre function">draw()</b> function, which controls the behavior of each frame in your animation. The draw function loops continuously unless you tell it otherwise by using the <b class="pre function">exit()</b> command.</p>

Expand Down