70 likes | 336 Views
LOGO 32. By: Xenon 9S. How to find it?. 1 st : go to my computer 2nd : shared area -> high school -> ICT 3 rd : Use the search bar, type in: Logo 4 th : Select, ‘copy of logo’ 5 th : Lastly select ‘logo32’. Basic commands. Pu : pen up Pd : pen down Lt: left Rt: right Fd: forward
E N D
LOGO 32 By: Xenon 9S
How to find it? • 1st : go to my computer • 2nd : shared area -> high school -> ICT • 3rd : Use the search bar, type in: Logo • 4th : Select, ‘copy of logo’ • 5th : Lastly select ‘logo32’
Basic commands • Pu: pen up • Pd: pen down • Lt: left • Rt: right • Fd: forward • To turn, you must put the number of the degree you want to turn too. • To go forward, you must put the number of how far you want it to go.
Making a basic shape Controls in order • Fd 100 • Lt 90 • Rt 100 • Lt 90 • Rt 100 • Lt 90 • Rt 100
Variables • Variables is the input that can be changedsuch as making a square or changing it into a triangle Example: Square= to square :length REPEAT 4 [FD :length RT 90] end
Variable examples Examples: Triangle: To triangle :length lt90 repeat 3[fd :length rt 120] end Square : to house square 100 fd100 rt90 fd100 lt90 triangle 100 rt90 bk 100 lt90 fd70 rt90 square 40 end
Procedure • Procedure in LOGO32 means you can just type a word and it makes a shape for you. For example type ‘robot’ and a robot will come up • How? You go into Edall and type in the codes for the robot. Tip! LOGO has already installed the code for a circle. You can just type ‘circle 100 (or any number)’, a circle would just appear for you