Just Basic Lesson 18 Mr. Kalmes.

Slides:



Advertisements
Similar presentations
Put Time on Your Side Activity. You need scratch paper and a pen or pencil.
Advertisements

Responsible Use Policy Technical Applications Mr. Hibbs, Mrs. Brau, & Coach Merkle Granbury Middle School.
Working with Vector Graphics – Lesson 21 Working with Vector Graphics Lesson 2.
PROCESSING. * Java SDK * downloads/jdk7-downloads html
PowerPoint 1 The Basics 1. Save this file to your Apps Folder as YourLastName_PP1 2. Read each slide. 3. Complete each set of numbered directions.
AP Computer Science Principles Data Abstraction and Procedural Abstraction Curriculum Module.
Details on the Painting and Writing your words in a font Objective: You will use detail in order to crisp up edges with black markers and to write your.
Creating Art With Simple Shapes By carefully implementing simple shapes to an HTML canvas we can create useful graphics. With enough time, lines, ellipses.
WELCOME TO CAHSEE Week 2. NOTES- any slide with a green title should be written down in your notebook.
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.
Computer Programming Modeling a Passive Solar Home.
Applied Geometry Lesson 1-5 Tools of the Trade Objective: Learn to use geometry tools.
Grade level: 2 nd grade Content area: Telling time Description: Students will learn how to read a clock. Telling Time.
The Water Cycle Webquest Lindsey Howland. Introduction Welcome to The Water Cycle Webquest!! In this lesson, we are going to take an exciting voyage through.
CRE Programming Club - Class 5 Robert Eckstein and Robert Heard.
Equations of Circles 10.6 ESLRs: Becoming Effective Communicators,
Parts of the Clock Click on the minute hand. Click on the clock’s face.
Lec 15 Writing an Applet Class. Agenda Writing an Applet class Java Graphics class.
I can count to 20. I can count to 30. I can count to 50.
Holt Geometry 11-7 Circles in the Coordinate Plane 11-7 Circles in the Coordinate Plane Holt Geometry Warm Up Warm Up Lesson Presentation Lesson Presentation.
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.
Fun with Paper Hosted by Seri Folding a clock. Telling Time The long hand is the minute hand. The short hand is the hour hand. There are 60 minutes on.
Python Turtle Graphics
Properties of water paper PowerPoint presentation
Engineering Drawing.
Blind/contour drawings
Interactive Science Notebook
Intro CS – Loops & Creating Shapes
Contour Line A line that creates boundaries that separates one area from another. They define the edges and surface ridges of objects and figures.
Unit 1: Transformations Lesson 3: Rotations
Beginning of Class (On lined paper)
Joan Miro. Joan Miro Joan Miro’s paintings are examples of abstract art Joan Miro’s paintings are examples of abstract art. His paintings show us.
Math 8, Math I, Math II Project Assignments and Examples Vincent.
Computer Application AutoCAD Program
2.00 Explain and demonstrate basic sketching skills and techniques.
Using a Drawing App to Teach Physical Education
Hyperbolas 4.4 Chapter 10 – Conics. Hyperbolas 4.4 Chapter 10 – Conics.
Introduction to Computer Graphics with WebGL
Module 2 Lesson 3 Over and Over Again
Please pick up the following BEFORE class starts:
T1.2e To Create Reference Angle Triangles (Butterfly)
Java Lesson 36 Mr. Kalmes.
Extra Drawing Practice in Java Script
OBSERVATIONAL DRAWING Techniques
CONTOUR DRAWING Continuous Line Drawing Blind Contour Drawing.
Inheritance in Graphics
Mod 2 Lesson 2 Repeating Debugging
Just Basic Lessons 14 Mr. Kalmes.
Mod 2 Lesson 2 Repeating with loops
LearnZillion Notes: --This is your hook. Start with a question to draw the student in. We want that student saying, “huh, how do you do X?” Try to be specific.
Python Lesson’S 1 & 2 Mr. Kalmes.
Just Basic Lesson 15 Mr. Kalmes.
Just Basic Lessons 9 Mr. Kalmes.
Module 2 Lesson 3 Over and Over Again
Chapter Seven Construction and Scale Drawings
UNIT 1: Line Lesson 5: Cliches.
Work on the first page of today’s packet.
Python Lessons 7 & 8 Mr. Kalmes.
How to Tell Time Hannah Fleming.
Mod 2 Lesson 2 Repeating with loops
Module 2 Lesson 3 Over and Over Again
pencil, highlighter, calculator, red pen, assignment
1/16/13 Warm-Up Convert to y = mx+b  solve for y! 3x + 2y = 12
Millennium High School Agenda Calendar
Just Basic Lesson 13 Mr. Kalmes.
1/16/13 Warm-Up Convert to y = mx+b  solve for y! 3x + 2y = 12
Article writing assignment
Just Basic Lessons 8 Mr. Kalmes.
WALT: tell the time o clock and half past
Today: The Empire Expands – What Was Life Like In the Roman Empire.
Presentation transcript:

Just Basic Lesson 18 Mr. Kalmes

Objective Understand how to draw using BASIC commands Construct their own drawings in BASIC

Concept You can create drawings with JustBasic. The idea is to send commands to the computer that tell it to use a virtual pencil that will go up and down off of the screen and move around much like when they put a pencil to paper. The following is a short list of commands that can be given to the computer.

Example

Handout 1 open “name” for graphics_nsb_nf as #g up - lift the pen up (don't draw) down - lower the pen down (draw) home - place the pen in the center of the graphics area goto -go to a specified position place - go to a specified position but don't draw

Handout 2 5 Graphic Commands Filled Shapes Box: "box 150 150" Circle: "circle 63" Ellipse: "ellipse 100 50" Line: "line 10 50 10 250" Filled Shapes Must have - "backcolor 127 127 127 or backcolor color“ Box: "boxfilled 150 150“ Circle: "circlefilled 63" Ellipse: "ellipsefilled 100 50"

Assignment Part 1: Draw the following shapes Circle Triangle (hint: Use lines think coordinate graph) Bullseye (5 circles with middle one filled) Clock with hour and minute hand Snowman with eyes and mouth

Assignment Part 2: Draw the following You need to draw a beach scene that includes: Sand Water Sky Sun Clouds Kite

Exit Slip What was the most difficult shape for you to create and why?