By Liam Lane How To Use MSW LOGO.

Slides:



Advertisements
Similar presentations
First of all – lets look at the windows you are going to use. At the top you have a toolbar, with all your various tools you can use when customising your.
Advertisements

Start with your equation Move the # term to the other side, and leave a space Determine what HALF of the coefficient of X is Factor the left side Write.
Polygon from a known side
Logo Lesson 1 TBE Fall 2004 Farah Fisher.
Computer Science 1000 LOGO I. LOGO a computer programming language, typically used for education an old language (1967) the basics are simple: move a.
Volume of a Solid by Cross Section Section 5-9. Let be the region bounded by the graphs of x = y 2 and x=9. Find the volume of the solid that has as its.
Using Logo and Logic Please use speaker notes for additional information!
"Turtle Graphics“ for kids.
Logo Lesson 3 TBE 540 Fall 2004 Farah Fisher. Prerequisites for Lesson 3 Before beginning this lesson, the student must be able to… Use simple Logo commands.
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 1) An introduction to Logo: drawing, moving,
Yr 9 a computer science Nice to meet you variable challenge! 1.Variable assessment Looping in python 2.Looping assessment Drawing in python using turtle.
The distance around the outside of a shape.
Answers to homework problems – page 8
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.
1 CSC 221: Computer Programming I Fall 2011 Fun with turtle graphics  turtle module  relative motion (setup, reset, left, right, forward, backward) 
A SIMPLE COMPUTER LANGUAGE LOGO. LOGO Introduction Logo is the simplest programming language. It.
Turtle see, turtle do Lesson 1 – Welcome to LOGO.
Introduction to Algorithms using Netlogo. What’s an Algorithm Definitions of Algorithm on the Web: –A procedure or formula for solving a problem.
Agent P, I have been hearing some rumours about a Python Turtle.
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.
Programmming Class Fall 2011 Sobhan Highschool Teacher: M.Taghizadeh.
Logo Programming Fall 2011 – Session 4 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
Perimeter of different shapes. *Engage* We take some different shapes How to measure their boundary.
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.
Programmming Class Fall 2011 – Session 2 Teacher: M.Taghizadeh
The Hare Raising Experience of Logo in the Classroom
Logo Programming Fall 2011 – Session 7 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
Different types of Shapes By: Raquel Rebbe We can make different shapes!! Circles Triangles Quadrilaterals And so much more!
Circles, Polygons, Circumference and Perimeter WHAT CAN YOU DEDUCE, GIVEN VERY LITTLE INFORMATION?
Logo for Beginners By Chris 9S.
HOW THEY WORK AND WHAT THEY DO. Jay Jay 9S. A control program is a type of programming that allows you to control systems. Control programs are used in.
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.
Pablo Revelo. Birds: to 3birds pu home pd lt 80 pu fd 250 pd setpensize 2 setpc "white st bird pu bk random 100 bird pu lt 90 fd random 40 bird ht.
Cracking the Code WHAT WORKS WHEN TEACHING STUDENTS TO CODE?
First of all – lets look at the window’s you are going to use. At the top you have a toolbar, with all your various tools you can use when customising.
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.
SHAPES There are many shapes in our world. These are circles. Circles are never ending lines.
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
Week 3 DO NOW QUESTIONS.
Using Logo to develop logical thinking
LOGO BY Kaotip 9S.
LOGO 32 By: Xenon 9S.
Regular Geometry Shapes
Opener: How many diagonals does each polygon have
Young Scholars Program 2003
Area of Shapes.
Difficulty: Medium In the figure above, inscribed triangle ABC is equilateral. If the radius of the circle is r, then the length of arc AXB is a) b) c)
Name the shape below. rectangle rhombus square triangle A B C D
Agent P, I have been hearing some rumours about a Python Turtle.
Learning to program with Logo
Computer Programming.
What shape am I? I am a plane shape. I have 4 sides.
Module 2 Lesson 3 Over and Over Again
Mod 2 Lesson 2 Repeating with loops
All About Shapes! Let’s Go!.
Institute for Entrepreneurship and Career Development (IECD)
SCITT Day 5 Position, direction and angle identifying key features of shape and space.
Using Logo and Logic This presentation uses a version of Logo called StarLogo available through MIT. It can be downloaded for free and installed on your.
Logo Programming.
Module 2 Lesson 3 Over and Over Again
2d Shapes.
Mod 2 Lesson 2 Repeating with loops
Module 2 Lesson 3 Over and Over Again
Presentation transcript:

By Liam Lane How To Use MSW LOGO

Basic functions on MSW LOGO FD or Forward moves the turtle forward. RT or Right Turn moves the turtle right. BK or Back moves the turtle backward. LT or Left Turn moves the turtle left. CS clears the screen. All commands must have a SPACE after the functions but prior to the number.

Changing pen colours on MSW LOGO. (first way)

Changing pen colours on MSW LOGO. (second way) You can also use RBG colours and imply the same set up with pen colour and what not!

How to draw a square on MSW LOGO Then type FD (for forward) and then a integer. i.e. 100. Then type RT (for right turn) and then an integer i.e. 90. First off you have to open MSW Logo. Then repeat the last two steps another three times and you will have a square.

How to draw a semi/full circle on MSW LOGO Arc Draws an arc.  Arc 360 50 draws a full circle, with a radius of 50.  Arc 180 50 draws a semi-circle with a radius of 50.

How to draw an equilateral triangle on MSW logo You have to have a maximum of 360 in the turns which have to be equally divisible by 3 i.e. The turns would be 120 each. Also for it to be and equilateral triangle the lengths of the sides have to be the same. For instance, in this example I am using 50 Which ever process you do first you must repeat that same process to a total of 3 times to have a equilateral

Cool shapes you can do on MSW LOGO

Cool shapes you can do on MSW LOGO cont.

How to draw a flower on MSW LOGO Repeat this 8 times to have the flower head and then draw a line southwards to signify the stem. It you want to add some leaves then just add a petal.