Difference between revisions of "KTurtle/C3/Programming-Concepts/English"
From Script | Spoken-Tutorial
(Created page with '{|border =1 !Visual Cue !Narration |- ||Slide Number 1 || Slide Number 1 Hello Everybody. Welcome to this tutorial on Programming concepts in KTurtle. . |- ||Slide Number 2…') |
|||
| Line 9: | Line 9: | ||
Hello Everybody. | Hello Everybody. | ||
Welcome to this tutorial on Programming concepts in KTurtle. | Welcome to this tutorial on Programming concepts in KTurtle. | ||
| − | |||
|- | |- | ||
||Slide Number 2 | ||Slide Number 2 | ||
| − | + | Learning Objectives | |
| + | || | ||
| + | In this tutorial, we will learn how to | ||
| − | + | * Write a program in KTurtle | |
| + | |||
| + | *Use variables to store user input | ||
| + | |||
| + | *Use print command to print on canvas | ||
| + | |||
| + | *Comment a line | ||
| − | |||
| − | |||
|- | |- | ||
| + | || Slide Number 3 | ||
| − | ||Slide number | + | System Requirement |
| + | |||
| + | |||
| + | ||To record this tutorial, I am using, | ||
| + | |||
| + | Ubuntu Linux OS Version 11.10. | ||
| + | |||
| + | KTurtle version 0.8.1 beta. | ||
| + | |- | ||
| + | ||Slide number 4 | ||
Pre-requisites | Pre-requisites | ||
|| | || | ||
| − | We assume that you have | + | We assume that you have basic working knowledge of KTurtle. |
| + | If not, | ||
| + | For relevant tutorials, please visit our website, | ||
| + | http://spoken-tutorial.org. | ||
| − | |||
|- | |- | ||
|| | || | ||
| − | |||
| − | + | ||Before proceeding, we will discuss some basic information about KTurtle. | |
| − | || | + | |- |
| − | + | ||Slide Number 5 | |
| − | + | Sprite | |
| − | + | ||Turtle displayed on the canvas is called sprite. | |
| − | + | Sprite is a small image that moves around the screen. | |
| − | + | e.g. Cursor is a sprite. | |
| − | + | |- | |
| + | ||Slide Number 6 | ||
| + | sprite Commands | ||
| + | ||Spritehide command hides Turtle from canvas. | ||
| + | Spriteshow command shows Turtle if it is hidden. | ||
| + | Clear command cleans all drawings from canvas. | ||
| + | |- | ||
| + | |- | ||
Revision as of 16:22, 24 December 2012
| Visual Cue | Narration |
|---|---|
| Slide Number 1 |
Slide Number 1 Hello Everybody. Welcome to this tutorial on Programming concepts in KTurtle. |
| Slide Number 2
Learning Objectives |
In this tutorial, we will learn how to
|
| Slide Number 3
System Requirement
|
To record this tutorial, I am using,
Ubuntu Linux OS Version 11.10. KTurtle version 0.8.1 beta. |
| Slide number 4
Pre-requisites |
We assume that you have basic working knowledge of KTurtle. If not, For relevant tutorials, please visit our website, http://spoken-tutorial.org. |
| Before proceeding, we will discuss some basic information about KTurtle. | |
| Slide Number 5
Sprite |
Turtle displayed on the canvas is called sprite.
Sprite is a small image that moves around the screen. e.g. Cursor is a sprite. |
| Slide Number 6
sprite Commands |
Spritehide command hides Turtle from canvas.
Spriteshow command shows Turtle if it is hidden. Clear command cleans all drawings from canvas. |