Logo Programming.

Slides:



Advertisements
Similar presentations
Logo Lesson 1 TBE Fall 2004 Farah Fisher.
Advertisements

Computer Science 1000 LOGO I. LOGO a computer programming language, typically used for education an old language (1967) the basics are simple: move a.
Super Logo. Key Instructions Pendown penup Forward 50 ( this number can change) Right 90 ( this number can change as well) Now try and draw a Early finishers,
Scratch Programming Session 6 of 10 If-then-else statements interactions Final projects specifications.
Racing Car Game Using the keys to control a sprite.
Introduction to TouchDevelop
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 1) An introduction to Logo: drawing, moving,
Mini Project II – Drawing Machine
LOGO SOFTWARE BY: SAVE 9S. INTRODUCTION Logo is a software that can be found at : Shared area> High School > ICT > take home software > LOGO32. This is.
Scratch – Simple Programming
Microsoft® Small Basic
1 CSC 221: Computer Programming I Fall 2011 Fun with turtle graphics  turtle module  relative motion (setup, reset, left, right, forward, backward) 
Turtle see, turtle do Lesson 1 – Welcome to LOGO.
Agent P, I have been hearing some rumours about a Python Turtle.
1 Turtle Graphics and Math Functions And how you can use them to draw cool pictures!
TURTLE GRAPHICS IP MR. MELLESMOEN. LOGO IN THE 1970’S THERE WAS A SIMPLE BUT POWERFUL PROGRAMMING LANGUAGE CALLED LOGO THAT WAS USED BY A FEW.
Introduction to TouchDevelop
MSW Logo By Awin 9s.
Logo For beginners By Dali Matthews 9S What is logo?
An introduction to Logo Mike Warriner Engineering Director, Google Note: This course is not an endorsement of Logo by Google. All views in this document.
CONTROL SYSTEMS Control Systems A command is a directive that performs a specific task An argument is a variable that can be used by the function reveiving.
Perimeter and Area of Regular Polygons 9-2
The Hare Raising Experience of Logo in the Classroom
By Liam Lane How To Use MSW LOGO.
1 Building Your Own Turtle Functions For making really cool pictures!
Logo for Beginners By Chris 9S.
This way, this way … Lesson 3. Starter START Print “Hello, world” STOP Print “What’s your name?” Read in name Print “Hi” and the name Print “Welcome to.
LOGO For the beginner Made by Rio Narazaki. W HAT I S L OGO ? Logo is a computer programming language used in Education. Logo is very easy to use. The.
Stage 6: Bee: Functions What do you remember from the last class? What did you like the best? Any questions?
Turtle Graphics Lesson 2 1. There are 3 homeworks to complete during the six lessons of this unit. Your teacher will let you know when a homework has.
Year 7: Length and Area Perimeter The perimeter of a shape is the total distance around the edge of a shape. Perimeter is measured in cm A regular shape.
Search for it on your computer
LOGO WHAT IS IT? HOW TO USE IT AND HOW USEFUL CAN IT BE?
What is it? How to use it and how useful can it be?
Using Logo to explore spiral patterns. Paul Broadbent Spiral patterns This is a (1,2,3) spiral path. It repeats lines of three.
Using the Python Turtle
Stage 3: Artist What do you remember from the last class?
Interior Angle Measure Lesson and Questions
Shape, space and measure coverage months
Add and Subtract Negative Numbers
Using Logo to develop logical thinking
LOGO BY Kaotip 9S.
LOGO 32 By: Xenon 9S.
Intro CS – Loops & Creating Shapes
Putting Objects in Motion
Scratch – Simple Programming
A Tiny Look at the Graphics Window
Agent P, I have been hearing some rumours about a Python Turtle.
Learning to program with Logo
Shape, space and measure coverage ELG
Microsoft® Small Basic
البرمجة مع لغة PYTHON TURTLE
Finding the Volume of Irregular Shapes
Creating Functions with Parameters
Objects in Alice: Positioning and Moving Them
Hour of Code.
BBC micro:bit Robot Buggy
Section 3 Programming with Turtle Graphics
Which way does the robot have to turn to get to the charger?
Using Graphic Design to Create Corporate Logos
Explain what touch develop is to your students:
Area of Irregular Shapes
SCITT Day 5 Position, direction and angle identifying key features of shape and space.
A Tiny Look at the Graphics Window
Alice and Daisies: Positioning and Moving Objects in Alice
G25 Surface area and volume
Mod 2 Lesson 2 Repeating with loops
Let’s Play BINGO to Practice Expanded Form Using Exponents!
Write down all you can about this shape
U3L4 Using Simple Commands
Presentation transcript:

Logo Programming

INSTRUCTION MEANING FORWARD n Move n mm forward BACKWARD n Move n mm backward LEFT t Turn left t degrees RIGHT t Turn right t degrees REPEAT n Repeat the following instructions n times END REPEAT Finish the REPEAT loop

For a regular closed shape: Pendown (to ensure the pen is down so that a line is made when you move) Note you can sometimes get away with assuming the pen is down or up already before you start. Right / Left 90 (usually to face along one of the sides) Repeat .... (the number of sides) Forward .... (the length of each side) Right 360/.... (the number of sides) End Repeat

Example - for a octagon: Pendown Note you can sometimes get away with assuming the pen is down or up already before you start. Right 90 Repeat 8 Forward 100 Right 45 (360/8) End Repeat

To complete a irregular unclosed path: Just use successive Penup/Pendown, Right / Left & Forward commands to complete the path.

Example of a irregular unclosed path: PEN UP Note you can sometimes get away with assuming the pen is down or up already before you start. FORWARD 50 RIGHT 90 PENDOWN FORWARD 70 PENUP FORWARD 40 FORWARD 80

Example to complete two regular shapes: Use a Backward command in between the first and second shapes. Note that there many ways of doing this PEN DOWN LEFT 90 REPEAT 5 FORWARD 50 RIGHT 72 END REPEAT PENUP BACKWARD 140 PENDOWN REPEAT 4 FORWARD 60 RIGHT 90 END REPEAT PEN DOWN LEFT 90 REPEAT 5 FORWARD 50 RIGHT 72 END REPEAT PENUP BACKWARD 80 RIGHT 90 PENDOWN REPEAT 4 FORWARD 60 RIGHT 90 END REPEAT OR Note that there many ways of doing this but questions may force you to do it one particular way by making you fill out blanks rather than letting you decide from scratch.

Websites to use to find out more / “play around” with Logo. Math Playground Logo Controlling Things On the screen (igcseict.info) BBC Bitesize Logo But note that you are forced, in this website, to assume that the pen is already up before you start.