Turtle Graphics Just keep swimming …. Fill Shapes turtle.fillcolor(“#color_code”) turtle.begin_fill() turtle.end_fill() ■You must tell turtle when to.

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

Getting Started with PowerPoint
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
PreAP Computer Science Quiz
1 Lesson 5. 2 R3 R1 R5 R4 R6 R2 B B A A
Click your mouse for next slide Dreamweaver – Merging, Coloring, Fonts Now it’s time to fill your page with some more interesting stuff The first thing.
C++ Graphics Primitives April 15th. void clearscreen(int c) –clear the screen to background color c –If c = 1 screen black.
Text, Masks, and Live Effects – Lesson 41 Text, Masks, and Live Effects Lesson 4.
United Way Community Campaign
Digital Interactive Media
Group 11 Analyzing Bogdan Bele Bianca Bogdan Francesco Brignani Jess Tierney Simona Grigalauskyte Matt Skea Nevena Dobreva.
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.
ESL PowerPoint Demonstration The Effective Use of Presentation Software in the ESL Classroom By Daniel Craig University of Illinois ESL 401 J.
WORKBOOK FORMATTING Nolan Tomboulian Tomboulian.wikispaces.com HOW THINGS LOOK CELL COLORFONT COLOR CELL BORDERSFONT SIZE CELL SIZEFONT.
Turtle see, turtle do Lesson 1 – Welcome to LOGO.
Agent P, I have been hearing some rumours about a Python Turtle.
Objective #4 Given a PowerPoint slide that is incorrectly formatted as to font, color, size, and style, correctly fix all of the formatting problems of.
Microsoft ® Office PowerPoint ® 2003 Training Create your own template [Your company name] presents:
Learning PowerPoint Part One: Working With Words Directions: Click the slide icon in the section at the right to move on to the next slide.
Fonts and Typography Section 7.3. Typography Typography: the style, arrangement, and appearance of text Well designed text makes your page more readable.
Character Formatting Lesson 3. Skills Matrix SKILL #MATRIX SKILL 2.1.1Apply styles 2.1.2Create and modify styles Format characters.
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.
Making Python Pretty!. How to Use This Presentation… Download a copy of this presentation to your ‘Computing’ folder. Follow the code examples, and put.
Graphic Basics in C ATS 315. The Graphics Window Will look something like this.
How to Design a Page, Part 2 HOWE/ANDERSON. Step 1: Login   Job No  User ID/ Password.
Loops & Graphics IP 10 Mr. Mellesmoen Recall Earlier we wrote a program listing numbers from 1 – 24 i=1 start: TextWindow.WriteLine(i) i=i+1 If.
Lesson 3. Word Lesson 3 Home tab—where most formatting options are accessed After the Clipboard group launcher is depressed, the Clipboard pane appears.
Working With Visual Elements
Graphics Concepts CS 2302, Fall /17/20142 Drawing in Android.
Learning PowerPoint Presenting your ideas as a slide show… …on the computer!
By Liam Lane How To Use MSW LOGO.
Using Microsoft Word Drawing Tools. Word Drawing Tools to Create Navigation Diagram Using Microsoft Word Drawing Tools, Slide 2Copyright © 2004, Jim Schwab,
Drawing with the Pen Barb Ericson Georgia Tech June 2011.
Cumulative Review of Microsoft Word Mrs. Masishin.
2D Design – A Guide! SECTION 1.
INDESIGN TO REVIEW. TEXT TOOL Used to -change font and font size -add text to text blocks -selecting and highlighting text.
How to make PowerPoint Presentations. Structure first slide: first slide: –title of your presentation –author(s) –year topic slides topic slides sources.
{ Power Point and Text Working with Text Boxes and Formatting Text.
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.
Game Programming Step-03 How to control the keyboard in Game.
Turtle Graphics Let’s see what we can draw on Python!
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.
Word 2010 Formatting Text In this lesson you will learn to format the font size, style, and color; highlight the text; and use the Bold, Italic, Underline,
PowerPoint Project 1 These instructions will tell you what TAB you need to go to, but will not give you pictures of the COMMAND buttons you need. 1.Go.
(PART II) Graphics and Multimedia. Font Control Font s  After a Font is created, its properties cannot be modified  Programmers must create a new Font.
Using the Python Turtle
Digital Interactive Media
Fireworks Animation Lesson 1 Introduction KS3 COMPUTING KS3 Computing
Graphics CIS 40 – Introduction to Programming in Python
Microsoft Word 2016 Lesson 3.
Introduction to Python
COSC 1306 COMPUTER SCIENCE AND PROGRAMMING
LOGO BY Kaotip 9S.
LOGO 32 By: Xenon 9S.
Excel 2010 Formatting Cells
THE AREA OF A CIRCLE An introduction to approximating the area of a circle.
The Art of Type 9/17/2018.
Agent P, I have been hearing some rumours about a Python Turtle.
CS 100: Roadmap to Computing
Paper Title as it appears on the PDF
Paper Title as it appears on the PDF
Chapter Lessons Use the Macromedia Flash drawing tools
CS 100: Roadmap to Computing
Signature: Microsoft Word 2003
Introduction to Turtle Graphics
Instructions Clear any pre-set text boxes on your slide.
Adding text, frames, shapes, diagrams & web links
Turtle Graphics Just keep swimming ….
Can you work out the next shape in the pattern?
Presentation transcript:

Turtle Graphics Just keep swimming …

Fill Shapes turtle.fillcolor(“#color_code”) turtle.begin_fill() turtle.end_fill() ■You must tell turtle when to begin filling and when to end. ■If you decide to end filling the shape before actually reaching your original destination, it will assume a shape from your final point to the original point.

Show/Hide Turtle turtle.hideturtle() turtle.showturtle() turtle.shape(“object”) ■You can change your cursor’s shape to be a “turtle”, “square”, “circle”, “arrow”, “triangle”, “classic”

Speedy Gonzalez ■Maybe the speed function isn’t fast enough for you … turtle.tracer(0) # put # program # here turtle.update()

Writing on Turtle turtle.write(“string”, font = (“font type”, size, “style”) ■Your text will appear wherever your turtle is ■Takes multiple arguments but this is standard ■First, type in string literal as message ■Then define font by: -type (Arial, Times New Roman, etc.) # in quotes -size (integer) -style (normal, bold, italic, bold italic) # in quotes

Change Pensize ■You can change the thickness of your lines ■This function takes a single integer argument from 1 to however big you want the pen thickness turtle.pensize(integer)

Clear the Stage ■You can use this command to clear your canvas in the middle of your program and start all over turtle.clear()

Turn Your Turtle STRAIGHT ■We’ve seen turtle turn right or left by a number of degrees but you can also set the heading by an exact degree point by this function: turtle.setheading(degrees)

Renaming Your Module t = turtle.Turtle() t.forward() t.goto() t.penup()

Naming Your Turtles ■You can make multiple turtles at a time! ethan = turtle.Turtle() brian = turtle.Turtle() ethan.goto(100,100) brian.goto(150, 50)

Screen Adjustments ■You can make multiple turtles at a time! screen = turtle.Screen() screen.bgcolor(“color_code”) screen.setworldcoordinates(min_x, min_y, max_x, max_y)