Functions in Processing CSE 120 Winter 2019

Slides:



Advertisements
Similar presentations
Spring Semester 2013 Lecture 5
Advertisements

Engineering H192 - Computer Programming The Ohio State University Gateway Engineering Education Coalition Lect 12P. 1Winter Quarter User-Written Functions.
Week 9: Methods 1.  We have written lots of code so far  It has all been inside of the main() method  What about a big program?  The main() method.
1 CSC 221: Computer Programming I Fall 2004 Objects and classes: a first pass  software objects, classes, object-oriented design  BlueJ IDE, compilation.
Beginning C++ Through Game Programming, Second Edition by Michael Dawson.
1 CSC 221: Introduction to Programming Fall 2012 Functions & Modules  standard modules: math, random  Python documentation, help  user-defined functions,
Dynamic Web Pages & JavaScript. Dynamic Web Pages Dynamic = Change Dynamic Web Pages are web pages that change. More than just moving graphics around.
1 Functions Lecfture Abstraction abstraction is the process of ignoring minutiae and focusing on the big picture in modern life, we are constantly.
Oct 15, 2007Sprenkle - CS1111 Objectives Creating your own functions.
CPS120: Introduction to Computer Science Decision Making in Programs.
Lawrence Snyder University of Washington, Seattle © Lawrence Snyder 2004 Assignment 6.
ECE 264 Object-Oriented Software Development Instructor: Dr. Honggang Fall 2012 Lecture 8: File I/O; Introduction to classes.
Chapter 4 Introduction to Classes, Objects, Methods and strings
1 CSC241: Object Oriented Programming Lecture No 02.
Engineering H192 - Computer Programming Gateway Engineering Education Coalition Lect 12P. 1Winter Quarter User-Written Functions Lecture 12.
 2008 Pearson Education, Inc. All rights reserved Introduction to Classes and Objects.
Week 8 - Friday.  What did we talk about last time?  Static methods.
Lawrence Snyder University of Washington, Seattle © Lawrence Snyder 2004 Functional Abstraction Reduces Complexity.
Review Expressions and operators Iteration – while-loop – for-loop.
1 UMBC CMSC 104, Section Fall 2002 Functions, Part 1 of 3 Topics Top-down Design The Function Concept Using Predefined Functions Programmer-Defined.
CSIS 113A Lecture 5 Functions. Introduction to Functions  Building Blocks of Programs  Other terminology in other languages:  Procedures, subprograms,
CMSC 104, Section 301, Fall Lecture 18, 11/11/02 Functions, Part 1 of 3 Topics Using Predefined Functions Programmer-Defined Functions Using Input.
INTRODUCTION TO ROBOTICS Part 5: Programming
Constructors and Destructors
Expressions & Control Flow CSE 120 Spring 2017
Information and Computer Sciences University of Hawaii, Manoa
User-Written Functions
Chapter 6: User-Defined Functions I
Introduction to Python
COMP 170 – Introduction to Object Oriented Programming
Functions in Processing CSE 120 Spring 2017
Lightbot and Functions CSE 120 Winter 2017
Week 8 - Friday CS 121.
Functions CIS 40 – Introduction to Programming in Python
Chapter 7 Functions.
Functions in Processing CSE 120 Winter 2018
Basic Input and Output CSE 120 Winter 2018
Variables & Datatypes CSE 120 Winter 2018
Functions Inputs Output
Introduction to Functions
Processing and Drawing CSE 120 Winter 2018
Static Methods 14-Nov-18.
Expressions & Control Flow CSE 120 Winter 2018
Chapter 3 Introduction to Classes, Objects Methods and Strings
Chapter 4 void Functions
Variables ICS2O.
Variables & Datatypes CSE 120 Spring 2017
Lightbot and Functions CSE 120 Winter 2018
Strings, Puzzle App I CSE 120 Winter 2018
CSE 115 September 29 – October 3, 2008.
Announcements Mid-Term Exam!! Quiz 5 Again + Quiz 6 Exercise 5
Functions Chapter 9 Copyright © 2008 W. W. Norton & Company.
Constructors and Destructors
UMBC CMSC 104 – Section 01, Fall 2016
CSE 115 September 29 – October 3, 2008.
Chapter 6: User-Defined Functions I
Topics Introduction to Functions Defining and Calling a Function
Basic Input and Output CSE 120 Winter 2019
Variables & Datatypes CSE 120 Winter 2019
Arrays CSE 120 Winter 2019 Instructor: Teaching Assistants:
Object Oriented Programming in java
Processing and Drawing CSE 120 Winter 2019
Loops & Nested Loops CSE 120 Winter 2019
Introduction to Computer Science
Lecture 4: Introduction to Code Analysis
Buttons & Boards CSE 120 Winter 2019
Methods/Functions.
ITM 352 Functions.
Expressions & Conditionals CSE 120 Winter 2019
Week 7 - Friday CS 113.
Presentation transcript:

Functions in Processing CSE 120 Winter 2019 Instructor: Teaching Assistants: Justin Hsia Ann Shan, Eunia Lee, Pei Lee Yap, Sam Wolfson, Travis McGaha Amazon scraps secret AI recruiting tool that showed bias against women “[Amazon’s] machine-learning specialists uncovered a big problem: their new recruiting engine did not like women. The team had been building computer programs since 2014 to review job applicants’ resumes with the aim of mechanizing the search for top talent.” “But by 2015, the company realized its new system was not rating candidates for software developer jobs and other technical posts in a gender-neutral way. That is because Amazon’s computer models were trained to vet applicants by observing patterns in resumes submitted to the company over a 10-year period. Most came from men, a reflection of male dominance across the industry.” https://www.reuters.com/article/us-amazon-com-jobs- automation-insight/amazon-scraps-secret-ai-recruiting-tool- that-showed-bias-against-women-idUSKCN1MK08G

Administrivia Assignments: Editing your portfolio from home Lego Family [submit] due tonight (1/23) Website Setup [checkoff] due tomorrow (1/24) Reading Check 3 due tomorrow @ 3:30 pm (1/24) Editing your portfolio from home Download and install Cyberduck & VS Code Re-do Steps 3 & 4 from the website setup Make sure to take advantage of office hours and Piazza!

Functions (So Far) Used for abstraction Detail Removal: subtasks with intuitive names Generalization: don’t repeat code Lightbot: Processing: line(), rect(), … min(), max()

Program Execution with Functions Functions “break” the normal sequential execution model When function is called, begin execution of function code When end of function is reached, jump back to where function was called from The keyword associated with this is return Analogy: Song lyrics with a repeated chorus Example: Survivor – Eye of the Tiger Verse 1, Verse 2, Chorus, Verse 3, CHORUS, Verse 4, CHORUS, Outro

Data Passing with Functions It takes in zero or more inputs, completes some task(s), and then returns a value Functions can do more in Processing than in Lightbot! Analogy: An Oven Analogy: Song lyrics with that change slightly Parameterized Example: Old MacDonald Chorus(cow,moo), Chorus(pig,oink), Chorus(duck,quack) Inputs Output

House-Drawing Function void setup() { size(500, 500); } void draw() { drawHouse(70, 10); void drawHouse(int x, int y) { triangle(x, y, x-40, y+40, x+40, y+40); // roof rect(x-40, y+40, 80, 80); // walls rect(x+10, y+80, 20, 40); // door return;

Return Type What the function sends back to whoever called it Can be any of the datatypes: int, float, color, etc. If not returning anything, then we use void void drawHouse(int x, int y) { triangle(x, y, x-40, y+40, x+40, y+40); // roof rect(x-40, y+40, 80, 80); // walls rect(x+10, y+80, 20, 40); // door return; }

Function Name Does not matter to computer, but does to humans Should describe what the function does Subject to same naming constraints as variables No two functions (or variables) can have the same name void drawHouse(int x, int y) { triangle(x, y, x-40, y+40, x+40, y+40); // roof rect(x-40, y+40, 80, 80); // walls rect(x+10, y+80, 20, 40); // door return; }

Parameters Required part of every function definition Must be surrounded by parentheses If no parameters, parentheses are left empty Datatype and name for every parameter must be specified Separate parameters with commas void drawHouse(int x, int y) { triangle(x, y, x-40, y+40, x+40, y+40); // roof rect(x-40, y+40, 80, 80); // walls rect(x+10, y+80, 20, 40); // door return; }

Function Body Body is enclosed in curly braces {} Parameters are variables that are used inside the body Body of a function is indented for better readability Processing uses two spaces by default Can use Edit → “Auto Format” to clean yours up automatically void drawHouse(int x, int y) { triangle(x, y, x-40, y+40, x+40, y+40); // roof rect(x-40, y+40, 80, 80); // walls rect(x+10, y+80, 20, 40); // door return; }

F.turn_around() Right, Right. F.turn_around() Right, Right. Lightbot Functions Lightbot functions had a different syntax, but similar parts: F.turn_around() Right, Right. function name parameters body F.turn_around() Right, Right.

Functions Worksheet Make sure you explain why you see what you see! void setup() { size(500, 500); } void draw() { drawHouse(70, 10); void drawHouse(int x, int y) { triangle(x, y, x-40, y+40, x+40, y+40); // roof rect(x-40, y+40, 80, 80); // walls rect(x+10, y+80, 20, 40); // door return; function call function name return type parameters body

Donatello as a Function // draw Donatello void drawDon() { fill(0, 100, 0); // dark green rect(x_pos, 182, 40, 15); // top of head fill(88,44,141); // purple rect(x_pos, 197, 40, 6); // bandana mask rect(x_pos, 203, 40, 20); // bottom of head fill(219, 136, 0); // dark yellow rect(x_pos, 223, 40, 50); // shell rect(x_pos, 273, 40, 45); // lower body } What’s wrong with this code? What happens if we call donatello() twice?

Donatello Function Parameterized Can now call drawDon() function with different arguments (stored in parameter x_don): We can also add parameter color mask to draw the other Teenage Mutant Ninja Turtles! // draw Donatello void drawDon(int x_don) { fill(0, 100, 0); // dark green rect(x_don,182,40,15); // top of head ... void draw() { background(255, 245, 220); drawDon(200); drawDon(400); }

Parameters vs. Arguments Implicit parameter/variable initialization with argument values // draw TMNT with parameters void draw() { background(255, 245, 220); drawTurtle(200, color(88, 44, 141)); // donatello drawTurtle(400, color(255, 0, 0)); // raphael } // parameterized ninja turtle drawing function void drawTurtle(int x, color mask) { fill(0, 100, 0); // dark green rect(x, 182, 40, 15); // top of head fill(mask); // apply mask color rect(x, 197, 40, 6); // bandana mask ... arguments parameters

Parameters vs. Arguments When you define a function, you specify the parameters Parameters are internal variables/boxes for functions Use parameters for values that you want to be different on different calls to this function When you call a function, you pass arguments The order of the arguments must match the order of the parameters We define a function once, but can call it as many times as we want (and in different ways)!

Solving Problems Understand the problem What is the problem description? What is specified and what is unspecified? What has been given to you (e.g. starter code)? Break the task down into less complex subtasks Example: Make a function that draws a row of five mice with their ears touching/overlapping. The mice should all be the same color except for the middle one, which should be red.

Parameter Example

Parameter Example

Example from CSE120 Wi18 student Looking Forward Portfolio Don’t forget to add Taijitu, Logo Design, and Lego Family! Animal Functions Start in lab on Thursday, due Monday (1/28) Design your own animal (like the frog shown here) Example from CSE120 Wi18 student