Python Review.

Slides:



Advertisements
Similar presentations
The Role of Color in Design Just FACS. Warm Colors Warm colors: red, orange, and yellow –Red and orange conveys the most warmth –Warm colors are suitable.
Advertisements

The Role of Color in Design. Warm Colors Warm colors: red, orange, and yellow –Red and orange conveys the most warmth –Warm colors are suitable for.
Color Schemes. Neutral Neutral color schemes can be easier to live with than with vibrant color schemes. True neutral colors are black, white and shades.
ECA 228 Internet Design color. rods & cones electromagnetic radiation.
October 21, 2014 Entry task: Explain ROY G BIV. Target: Identify color names and physical features.
.C.o.l.o.r.. The color wheel is designed so that virtually any colors you pick from it will look good together. Over the years, many variations of the.
COLOR MODEL MULTIMEDIA & HYPERMEDIA. BASIC COLOR THEORY With colors, we can set a mood, attract attention, or make a statement We can use color to energize,
Color Wheel.
COLOR WHEEL. PRIMARY COLOR (RGB) Primary Color Definition These are colors that cannot be created through the mixing of other colors. Normally there are.
Begin on page 259 and take notes on the terms below. Be sure to leave space between terms in order to add to your notes when we review. 1. Warm colors.
Data dan Teknologi Multimedia Sesi 04 Nofriyadi Nurdam.
The Color Wheel Adapted from The color wheel or color circle is the basic tool for combining colors. The first circular color diagram.
Taken and adapted from Bonnie Skaalid
The Role of Color in Design Do now! -Clear off your table -Take out notebook and something to write with.
COLOR DESIGN’S MOST EXCITING ELEMENT Hue Value Intensity COLOR HAS THREE DIMENSIONS OR QUALITIES:
Color Definitions Graphic Design. There are tens of thousands of colors at designers’ disposal, and almost infinite ways of combining them.
Quiz Review - Drawing Kickback - line type most specific to designers that is drawn with an emphasis at the beginning and at the end. Feathering - a vague-looking.
Elements of Design: Color
Which colors look good together?
Color Management. How does the color work?  Spectrum Spectrum is a contiguous band of wavelengths, which is emitted, reflected or transmitted by different.
Color is the perceptual characteristic of light described by a color name. Specifically, color is light, and light is composed of many colors—those we.
COLOR MODEL WEB DESIGN. BASIC COLOR THEORY With colors, we can set a mood, attract attention, or make a statement We can use color to energize, or to.
BASIC COLOR SCHEMES INTRO TO COLOR THEORY
Where does color come from? Ray of light is the source of all color.
The colour wheel or colour circle is the basic tool for combining colours. The first circular colour diagram was designed by Sir Isaac Newton in 1666.
Understanding Color.
Reference: tigercolor.com Color Schemes Color Schemes EQ: How can an artist use a valid color scheme to create an aesthetic purpose in his work? “With.
Color Wheel Assignment On the back of your color wheel poster  Top Left Corner should be Your Name – Fashion Essentials – Period  List the primary colors.
What is The various visual phenomena that are the results of the reflection or absorption of light by a surface. Color has three properties: Hue, Value,
„Moderné vzdelávanie pre vedomostnú spoločnosť/Projekt je spolufinancovaný zo zdrojov EÚ“ Inovácia obsahu a metód vzdelávania prispôsobená potrebám vedomostnej.
The Color Wheel. THE COLOR WHEEL REDORANGEYELLOWGREENBLUEVIOLET.
Color Theory. Classic Color Wheel Primary Colors: Red Yellow Blue.
Color Theory KIMBERLY CATES-MERAZ. Choosing the Right Color the most effective color choices go beyond just personal preference colors have an extraordinary.
COLOUR THEORY PROJECT.
Texture is a surface’s tactile quality. Tactile refers to the perception of touch. In design, texture appeals to sight as well as touch.
Objective 3.03: Implement color schemes in housing interiors.
Elements of Design COLOR.
The 12 colour RYB (or artistic) colour wheel
Color Theory & the Color Wheel. A Color Wheel How do we “see” color?
Lesson 5 - Colour Schemes and Use in Displays
The Color Wheel Adapted from
COLOR THEORY Color is the eye’s response to the visual spectrum from red to violet. Different colors in the spectrum are created by different wavelengths.
Is the practical guidance to color mixing and the visual effects of a specific color combination.
Color Element of Art.
 Primary- The colors from which all other colors are made ; Red, Yellow, Blue  Secondary-Colors made by mixing two primary colors; Green, Orange, Violet.
COLOR DESIGN’S MOST EXCITING ELEMENT. Hue Value Intensity COLOR HAS THREE DIMENSIONS OR QUALITIES:
The Element of COLOR. Color A visual perception created by the spectrum of light. COLOR IS.
COLOR THEORY Basic color schemes Introduction to Color Theory Basic color schemes Introduction to Color Theory.
COLORCOLOR INTENSITY: How bright or dull a color appears PRIMARY COLORS: Red/Yellow/Blue WARM COLORS: Advance Objects appearing larger and closer to you.
Color Theory. Hue and Value "Hue" is the specific name of a color, red, yellow, blue (primary colors). ”Value” refers to the lightness or darkness of.
Colors for You Chapter 10 – Clothing and Your Appearance Objectives:  Define basic color terms  Describe the relationship of colors in the color wheel.
COLOR An exciting ELEMENT of ART Which depends on REFLECTED LIGHT.
Color Schemes. Complimentary Colors that are opposite each other on the color wheel are considered to be complementary colors (example: red and green).
The Color Wheel & Color Schemes
COLOR IS IMPORTANT AND POWERFUL
COLOR THEORY.
Color Schemes Housing I Objective 3.03.
Color Schemes For Use in Websites
Monochromatic A color scheme based on one hue..
COLOR THEORY Color is the eye’s response to the visual spectrum from red to violet. Different colors in the spectrum are created by different wavelengths.
Colors.
Elements of Design COLOR.
Lesson 5 - Colour Schemes and Use in Displays
Get out pencil and your sketchbook to take some notes.
Color Theory.
Chapter 19-2 Clothing Design Basics
Color Wheel.
Color Wheel The color wheel is divided into three categories: primary, secondary, and tertiary. The three primary colors are red, yellow and blue. These.
Color Theory 2D Fall 2016.
What’s your favorite color?
Presentation transcript:

Python Review

Iteration Start Stop Increment Number for x in sequence: print x Start: x = sequence[0] Stop: x = sequence[len(sequence) – 1] Increment: values in sequence Number: len(sequence)

Iteration Start Stop Increment Number for x in range(10): print x Start: x = 0 Stop: x = 9 Increment: 1 Number: 10

Iteration Start Stop Increment Number for x in range(0, 12, 2): print x range(0, 12, 2)  [0, 2, 4, 6, 8, 10] Start: x = 0 Stop: x = 10 Increment: 2 Number: 6

Iteration Start Stop Increment Number x = 0 while x <= 10: print x x = x + 2 Start: x = 0 Stop: x > 10 Increment: 2 Number: 6

Iteration x = 0 x = 0 while x <= 10: while x <= 10: print x Go Forever 2 4 6 8 10 12 x = 0 while x <= 10: x = x + 2 print x while x <= 10: x = 0 print x x = x + 2 All Zeros

Color in Visualization CMSC 120: Visualizing Information Lecture 4/24/08

Multivariate Visualization 3 or more dimensions hard to visualize Projection into lower-d space distorts data Multifunctioning Graphical Elements

Color Pre-attentive 1000s of different colors 20-30 gray tones Patterns, boundaries, movement

Color Purposes Emphasis Appeal Dimensionality Hello, here is some text. Can you read what it says? Hello, here is some text. Can you read what it says? Hello, here is some text. Can you read what it says? Hello, here is some text. Can you read what it says? Hello, here is some text. Can you read what it says? Hello, here is some text. Can you read what it says?

Color

Color The quality of an object with respect to the light reflected by the object Determined visually by: Hue: color Saturation: purity Brightness: % black

Color

Types of Colors Additive Colors Subtractive All visible colors are a sum of two or more Primary Colors Red, Green, Blue Subtractive Complementary Colors Removing an additive color from white light

Representing Color Encoding RGB CMKY = 1 - RGB

Choosing the Right Color Human matches 16-20 colors Addition of pattern elements < 10 -12 > 20 can no longer be pre-attentively processed VGA Monitor 16 colors 262,144 (643) Super VGA 256 colors Several million How much and which colors?

Color Schemes

Color Schemes Color may carry standardized meanings in particular applications. blue = water bodies green = vegetation brown = desert/mountains white = ice or snow, etc. Color maps

2004 Election

Tornado

Elevational map of Kansas Similar colors: subclasses Dissimilar: barriers/unrelated

Complementary Colors Opposites on the color wheel High Contrast Vibrant (full saturation) Can be jarring Make something stand out Bad for text

Analogous Colors Adjacent on Color Wheel Serene Comfortable Found in Nature Pleasing Contrast can be problematic Use black, white, gray as an accent

Analogous Colors Adjacent on Color Wheel Serene Comfortable Found in Nature Pleasing Contrast can be problematic Use black, white, gray as an accent

Triadic Colors Evenly spaced Vibrant, even when pale hues are used Balance color use One dominate Others accent

Warm and CoolColors Cool colors Hot colors Short wave length violet, blue, cyan, green large regions features for which no special emphasis is desired Hot colors Long wavelength yellow, orange, red, magenta (long wavelength). Best used for small regions features for which special emphasis is desired

Hot and Cool Colors Color Stereoscopic Effect cool colors appear farther away hot colors appear closer. enhanced by using black boundaries between color areas, a small contour interval, and bright high-saturation or fluorescent