No edit summary |
m (Reizner moved page IFD:Computational Thinking/Sources-10May16 to IFD:Computational Thinking-SoS16/Sources-10May16) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
'''''Recap: Getting Started, Processing Basics''''' | '''''Recap: Getting Started, Processing Basics''''' | ||
Statements and Comments | Statements and Comments<br /> | ||
https://processing.org/examples/statementscomments.html | https://processing.org/examples/statementscomments.html<br /> | ||
<br /> | |||
Logical Operators | Logical Operators<br /> | ||
https://processing.org/examples/logicaloperators.html | https://processing.org/examples/logicaloperators.html<br /> | ||
<br /> | |||
setup() and draw() Functions | setup() and draw() Functions<br /> | ||
https://processing.org/examples/setupdraw.html | https://processing.org/examples/setupdraw.html<br /> | ||
<br /> | |||
Variables | Variables<br /> | ||
https://processing.org/examples/variables.html | https://processing.org/examples/variables.html<br /> | ||
<br /> | |||
Booleans... or Not? | Booleans... or Not?<br /> | ||
https://processing.org/examples/truefalse.html | https://processing.org/examples/truefalse.html<br /> | ||
<br /> | |||
Characters and Strings | Characters and Strings<br /> | ||
https://processing.org/examples/charactersstrings.html | https://processing.org/examples/charactersstrings.html<br /> | ||
<br /> | |||
Variable Scoping | Variable Scoping<br /> | ||
https://processing.org/examples/variablescope.html | https://processing.org/examples/variablescope.html<br /> | ||
<br /> | |||
Datatype Conversion | Datatype Conversion<br /> | ||
https://processing.org/examples/datatypeconversion.html | https://processing.org/examples/datatypeconversion.html<br /> | ||
<br /> | <br /> | ||
<br /> | <br /> | ||
Line 29: | Line 29: | ||
'''''Conditionals and Loops and You''''' | '''''Conditionals and Loops and You''''' | ||
Introduction to Conditional Statements and Loops | Introduction to Conditional Statements and Loops<br /> | ||
CS1130 Materials, Cornell University | CS1130 Materials, Cornell University<br /> | ||
http://www.cs.cornell.edu/courses/cs1130/2012sp/1130selfpaced/module2/module2part1/ifloop.html | http://www.cs.cornell.edu/courses/cs1130/2012sp/1130selfpaced/module2/module2part1/ifloop.html<br /> | ||
<br /> | |||
for Loops<br /> | |||
https://processing.org/reference/for.html<br /> | |||
<br /> | |||
while Loops<br /> | |||
https://processing.org/reference/while.html<br /> | |||
<br /> | |||
switch and case<br /> | |||
https://processing.org/reference/switch.html<br /> | |||
https://processing.org/reference/case.html<br /> | |||
<br /> | |||
<br /> | |||
'''''Examples!''''' | |||
Conditionals<br /> | |||
https://processing.org/ | https://processing.org/examples/conditionals1.html<br /> | ||
https://processing.org/examples/conditionals2.html<br /> | |||
<br /> | |||
https://processing.org/ | Iteration<br /> | ||
https://processing.org/ | https://processing.org/examples/iteration.html<br /> | ||
<br /> | |||
Embedded Iteration<br /> | |||
https://processing.org/examples/embeddediteration.html<br /> |
Latest revision as of 12:22, 15 February 2017
Recap: Getting Started, Processing Basics
Statements and Comments
https://processing.org/examples/statementscomments.html
Logical Operators
https://processing.org/examples/logicaloperators.html
setup() and draw() Functions
https://processing.org/examples/setupdraw.html
Variables
https://processing.org/examples/variables.html
Booleans... or Not?
https://processing.org/examples/truefalse.html
Characters and Strings
https://processing.org/examples/charactersstrings.html
Variable Scoping
https://processing.org/examples/variablescope.html
Datatype Conversion
https://processing.org/examples/datatypeconversion.html
Conditionals and Loops and You
Introduction to Conditional Statements and Loops
CS1130 Materials, Cornell University
http://www.cs.cornell.edu/courses/cs1130/2012sp/1130selfpaced/module2/module2part1/ifloop.html
for Loops
https://processing.org/reference/for.html
while Loops
https://processing.org/reference/while.html
switch and case
https://processing.org/reference/switch.html
https://processing.org/reference/case.html
Examples!
Conditionals
https://processing.org/examples/conditionals1.html
https://processing.org/examples/conditionals2.html
Iteration
https://processing.org/examples/iteration.html
Embedded Iteration
https://processing.org/examples/embeddediteration.html