A Few Notes Starting August 29, 2018

Slides:



Advertisements
Similar presentations
Radian Measure and Coterminal Angles
Advertisements

Chapter 4: Circular Functions Lesson 1: Measures of Angles and Rotations Mrs. Parziale.
Warm Up Find the measure of the supplement for each given angle °2. 120° °4. 95° 30°60° 45° 85°
Objective: Convert between degrees and radians. Draw angles in standard form. Warm up Fill in the blanks. An angle is formed by two_____________ that have.
Angles and Their Measure Section Angles Vertex Initial Side Terminal Side.
Introduction to Radians (Definition, Converting Between Radians and Degrees, & When to use Degrees or Radians)
6.3 Angles & Radian Measure
13-3: Radian Measure Radian Measure There are 360º in a circle The circumference of a circle = 2r. So if the radius of a circle were 1, then there a.
Chapter 13: Trigonometric and Circular Functions Section 13-2: Measurement of Arcs and Rotations.
Angles.
Chapter 6 Additional Topics in Trigonometry Copyright © 2014, 2010, 2007 Pearson Education, Inc Polar Coordinates.
3.1 Radian Measure OBJ: Convert degree measure to radian measure Find trig values of angles expressed in radian measure.
Angles in Degree & Radian Measure w/Unit Circle
Trigonometry The science of studying angle measure.
Bell Ringer ( ) Using any available source define: 1. Radian 2. Standard Position 3. Coterminal 4. Intercepted Arc 5. Reference Angle 6. Unit Circle.
Keyboard and Events. What about the keyboard? Keyboard inputs can be used in many ways---not just for text The boolean variable keyPressed is true if.
Processing Lecture.2 Mouse and Keyboard
Introduction to Processing CS 4390/5390 Fall 2014 Shirley Moore, Instructor September 3,
4.1 Day 1 Angles & Radian Measure Objectives –Recognize & use the vocabulary of angles –Use degree measure –Use radian measure –Convert between degrees.
Concept. Example 1 Draw an Angle in Standard Position A. Draw an angle with a measure of 210° in standard position. 210° = 180° + 30° Draw the terminal.
B. RAMAMURTHY Simulating Motion and Implementing Animation.
CIS 3.5 Lecture 2.2 More programming with "Processing"
Section 6.1 Notes Special Angles of the Unit Circle in degrees and radians.
And because we are dealing with the unit circle here, we can say that for this special case, Remember:
Warm-Up 3/26 Fahrenheit. Rigor: You will learn how to convert from degrees to radians and radians to degrees. Relevance: You will be able to solve real.
Angle Measures Practice. Determine the reference angle for the following angles:
Arc Length Start with the formula for radian measure … … and multiply both sides by r to get … Arc length = radius times angle measure in radians.
Mouse Inputs in Processing. Interacting with the Mouse mouseX and mouseY: pg mouseXmouseY –The position of the mouse in the canvas pmouseX and.
Chapter 4-1: Measures of Angles as Rotations. Review… Angle: The union of two rays which are its sides with the same vertex or endpoint. Angle: The rotation.
Radian Measure That was easy
Processing Variables. Variables Processing gives us several variables to play with These variables are always being updated and you can assume they have.
Chapter 5 Section 5.1 Angles. An angle is formed when two rays are joined at a common endpoint. The point where they join is called the vertex. The ray.
Agenda Notes : (no handout, no calculator) –Reference Angles –Unit Circle –Coterminal Angles Go over test Go over homework Homework.
Section 4.1. Radian and Degree Measure The angles in Quadrant I are between 0 and 90 degrees. The angles in Quadrant II are between 90 and 180 degrees.
Measures of Angles and Rotations. Vocabulary Degrees  360 degrees makes a full circle  270 degrees makes a three quarter circle  180 degrees makes.
Lesson 13.2 Define General Angles and Use Radian Measure.
Chapter 7: Trigonometric Functions Section 7.1: Measurement of Angles.
Warm Up I can complete the unit circle and convert degrees to radians.
Grade Homework HW 13.2A Answers.
Some of Chap 17.
Radians, Degrees, Arc Length, & Area of a Sector
Copyright © 2014, 2010, 2007 Pearson Education, Inc.
Chapter 14, Translate & Rotate
Coterminal Angles.
9.3B Notes: Angle conversions
Do Now Find the value of each expression. Sin 60 ° Cos 30 ° Tan 270 °
Conversion from and to Degrees, Radians, and Revolutions
Radian Measure and Coterminal Angles
20 minutes maximum exhibits
Unit 4, Day 1 Circular Trig.
Warm Up How’d the test go? Better? Worse?
Radian Measure of a Central Angle
Students, Take out your calendar and your homework. Take out your spiral notebook and Complete the DNA. Use your notes if necessary. Simplify.
Chapter 10 Algorithms.
Trigonometry Extended: The Circular Functions
Mouse Inputs in Processing
Warm Up Give radian measure for each: 90º b) 120º c) 135º
Chapter 5, Conditionals Brief Notes
Chapter 10 Algorithms.
More programming with "Processing"
Angles and Radian Measure
Angles in standard Position
A Few Notes August 30, 2017.
Chapter 15, Images …a few points
Warm Up Give radian measure for each: 90º b) 120º c) 135º
How About Some PI? Trigonometry Feb 18,2009.
Warm Up Give radian measure for each: 90º b) 120º c) 135º
9.2 Angle and Radian Measure
( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , )
Define General Angles and Use Radian Measure
Presentation transcript:

A Few Notes Starting August 29, 2018

From Chapter 2 Don’t neglect Zoog. He’s your friend! Textbook website: learningprocessing.com Work exercises at home… Remix

Processing measures degrees or radians of a circle differently: 0 degrees/radians is located on the right side of the circle as expected. However, it increases in the clockwise direction rather than counterclockwise. Angles can be specified: in radians; in degrees (by converting into radians); eg radians(90) or by special names of common angles, stored as variables.

Formula: Degree *( pi/180)

void setup() { // Called once when program starts } void draw() { // Called repeatedly while program runs  

void setup() { size(200, 200); } void draw() { background(255);   void draw() { // Try moving background() to setup() to see the difference. background(255);   stroke(0); fill(175); rectMode(CENTER); fill(#ff0000); rect(mouseX, mouseY, 50, 50);

void mousePressed() { // Called when the mouse is pressed }   void keyPressed() { // Called each time a key is pressed frameRate(fps); Sets number of frames displayed per second. i.e. the number of times draw() is called per second. Default = 60.

Use save() in your homework The save() function is placed within draw(). It generates a file based on the name you specify. Example: Save(bunnypic.jpg);