January 26 – 30, 2009 CSE 113 B.

Slides:



Advertisements
Similar presentations
Light (or the ELECTROMAGNETIC SPECTRUM)
Advertisements

Green 4.0x10 -7 m 6.5x10 -7 m 5.2x10 14 Hz 1.2x10 -1 m 5.7x10 14 Hz 3.3 m 6.0x10 16 Hz 1.0x10 15 Hz 1.0x10 -4 m 3.0x10 19 Hz minimum Radio, Micro, IR,
Most-to-Least Legible Color Combinations for Viewing on Slide Shows Color and contrast are very important tools in communication. They can be used to enhance.
COLORING WITH NUMBERS. NumbersNumbers NumbersNumbers
© red ©
Key For All Figures CYAN NODE = DBF ORANGE = PRO BROWN = Gov’t YELLOW = Pharma GRAY = VC WHITE = Other Triangle = New Entrant Circle = Incumbent Node size.
Color (1) Turtle class contains a method to change the pen color Note: before using Color class, you should add following line in the top of the source.
Web Colors. Web Colors: Up until now, we have been using only pre- defined color names, such as "orange" and "lightblue". As web designers, we need the.
WHITE YELLOW GREEN BLUE RED PINK BLACK BROWN ORANGE.
Introduction to OpenGL. OpenGL is a low-level graphics library specification. It makes available to the programmer  a small set of geometric primitives.
If you say 8 color the ones in your picture purple. If you say 9 color the ones in your picture blue.
Color Mixing By: Whitney Buley.
Color & Light Benjamin Hammel image by refeia
Aim: Explain the difference between primary, secondary and complementary colors of light as well as pigments ? OBJ: Given notes and activity sheet SWBAT.
WHAT MAKES RED DIFFERENT THAN BLUE? THEY HAVE DIFFERENT WAVELENGTHS AND DIFFERENT FREQUENCIES.
Light and Color There are 3 primary colors of light RED, GREEN, & BLUE
IPC Notes Light & Color. The colors of light that we see are the colors of light that an object reflects towards our eyes. ex) blue jeans absorb all colors.
Colors of Pigment The primary colors of pigment are magenta, cyan, and yellow. [
R O Y G B V ellowreenrangelueiolet LONG SHORT ed low energy high energy.
Monkey, Monkey In the Tree. Monkey, monkey in the tree Throw the yellow coconut down to me!
GRAPHING RELATIONSHIPS For each graph, determine the graphing relationship and record it on a white board.
HSB to RGB to HEX.
COLORCOLOR. The Color Spectrum The spread of colors from white light when passed through a prism or diffraction grating. –Red, Orange, Yellow, Green,
 There are 3 primary colors of light RED, GREEN, & BLUE  When these colors of light are mixed… White Light is produced  This process is called color.
Color Chapter 28. Color Lab What colors are formed by mixing different colors of light? Consensus:
Java Applets Getting Started. Import Files In order to run the applet properly, we have to import some files into our class. These files are: –import.
Crazy colors By teacher john. Basic colors! White Black red blue Light green yellow orange purple Grey Light blue green.
Guess the colour Mix the colours Evaluation Group with work.
C o l o u r s Created by – Ganesh Satimeshram.
Experiment #1 Measurement of Resistance
LIGHT, COLOR, AND WAVE INTERACTION.
Color Mixing By: Whitney Buley.
COLORS.
Icosahedrons 3D Color Wheel.
How to read the strength of a resistor
Safety Colors Quiz.
Watch Pete the Cat here:
Color.
ART HISTORY QUIZ #1 FRIDAY, NOVEMBER 6th.
Notes 22.3: Using Color.
Colors.
Colors/Color Words.
Digital Multimeter (DMM)
Name: _______________________________
Colour Theories.
Colour Phrase Random Slide Show Menu
Average Number of Photons
Colours.
CSE 113 A January 26 – 30, 2009.
Two ways to discuss color 1) Addition 2) Subtraction
CSE 113 A February , 2009.
Can I color yellow?. Can I color yellow?
Safety Colors Quiz.
Colors/Color Words.
Color and Shading Lecture 9 Mon, Sep 26, 2005.
February , 2009 CSE 113 B.
What Color is it?.
©
©
February , 2009 CSE 113 B.
Created for CVCA Physics by Dick Heckathorn 31 May 2K+4
Created By Dick Heckathorn 25 June 2K+3
Created for CVCA Physics by Dick Heckathorn 31 May 2K+4
BSI Symbols for Graphic Communication
Help Gina and Tina color the numbers
The Colors of Our World Mary Kate DeLary.
COLOURS.
9/30 & 10/1 - 7th Grade Agenda Learning Objective: Learn about the primary colors of light Collect Reading & Note Taking : p.39 – 40 Collect Signed Grade.
Let’s Learn the Basic Colors
Presentation transcript:

January 26 – 30, 2009 CSE 113 B

Announcements 1/30: Last day to turn in signed form from syllabus & Exam 1 review sheet available 2/4: Go over review sheet for Exam 1 2/6: Exam 1 & Lab 1 due 2/9: Go over Exam 1 2/11: Makeup exam for Exam 1

Syntax: Calling methods objectReference.methodName();

Change Color of Turtle setColor(java.awt.Color)

Pre-defined Colors RED ORANGE YELLOW GREEN BLUE CYAN MAGENTA BLACK WHITE GREY

Color Syntax java.awt.Color.RED

Color Syntax java.awt.Color.RED RED – an object that represents the color RED. RED is a pre-defined constant of the class Color.

Color Syntax java.awt.Color.RED Color class can be used to create (any) color. You can use the pre-defined color constants or create your own color by specifying red, green, and blue values in the range of 0-255. (More on this later.)

Color Syntax java.awt.Color.RED The Color class lives in a package named awt. A package is a way to group like code together.

Color Syntax java.awt.Color.RED awt package is a package inside another package named java.