Difference between revisions of "Turtle art lesson 5"
Jump to navigation
Jump to search
(Created page with "{|class="wikitable" |- |Week 4 |Arithmetic manipulation using Turtle Art. |- |Objectives | #Demonstrate the use of arithmetic operations and display results #Understand the lo...") |
|||
Line 1: | Line 1: | ||
{|class="wikitable" | {|class="wikitable" | ||
|- | |- | ||
− | |Week | + | |Week 5 |
− | | | + | |Creating action sequences and patterns based on defined actions. |
|- | |- | ||
|Objectives | |Objectives | ||
| | | | ||
− | |||
− | |||
#Combining input parameters, action sequences and evaluating conditions to make Turtle move | #Combining input parameters, action sequences and evaluating conditions to make Turtle move | ||
+ | #Calling a function (Action) | ||
+ | #Passing values (for parameters) to function | ||
+ | #Familiarization of ways of defining parameters - movement, co-ordinates and colour | ||
+ | #Visualize steps, space, co-ordinates and shapes through movement and vice versa | ||
|- | |- | ||
|Steps | |Steps | ||
| | | | ||
+ | 1.Define an action as a sequence of commands | ||
+ | 2.Addition and division commands defined as actions | ||
+ | 3.Note that the values are stored in variables “box 1” and is transferred between actions. The variables can also pass value from main code to the action sequence | ||
+ | 4.Tracing a circle of a given angle and a given radius |
Revision as of 17:38, 22 April 2015
Week 5 | Creating action sequences and patterns based on defined actions. |
Objectives |
|
Steps |
1.Define an action as a sequence of commands 2.Addition and division commands defined as actions 3.Note that the values are stored in variables “box 1” and is transferred between actions. The variables can also pass value from main code to the action sequence 4.Tracing a circle of a given angle and a given radius |