CS 456 Drawing.

Slides:



Advertisements
Similar presentations
Explanation ACC system
Advertisements

Basic Desktop Terminology By Wendi Cochran Douglas High School.
Elements of Design.

ONE POINT PERSPECTIVE 6 TH GRADE VISUAL ARTS. ELEMENTS OF ART… 2.
Exploring Web Design Chapter 3 Web Typography. The goal of any web page is to communicate.
Eleven colors and rasters. Color objects Meta represents colors with color objects You can create a color by saying: [color r g b] r: amount of red (0-255)
Chapter 6.1 Visual Design. 2 Visual Design The management and presentation of visual information Two dimensional & three dimensional communication The.
ENDS 375 Foundations of Visualization Geometric Representation 9/30/04.
Eleven colors and rasters. Color objects Meta represents colors with color objects You can create a color by saying: [color r g b] r: amount of red (0-255)
Use Chapter 11 to define: –Primary colors –Secondary colors –Tertiary/intermediate colors –Hue –Value –Shade –Tint –Intensity.
Fonts Typeface Typography. Leading Spacing between lines.
The Elements of Graphic Design. Function - Give structure and carry the work.
ICS 61 - Graphics. Light Color Wheel Color Perception.
Color theory Vocabulary :)
Understanding Color Fashion Design. Impact of Color Symbols Temperature Movement Mood.
Element of Design Color Line Form Shape Value Texture Space.
Designing with Type DIM. Design Relationships Concordant—occurs when you use only one type family, without much variety in style, size, weight, and so.
Graphics Concepts CS 2302, Fall /17/20142 Color Concepts.
Colour Visual Arts 8. Colour There are many different terms used in reference to colour The chroma refers to the description of the colour including the.
DTP Word 2002 Chapter 2 Preparing Internal Documents.
$1 Million $500,000 $250,000 $125,000 $64,000 $32,000 $16,000 $8,000 $4,000 $2,000 $1,000 $500 $300 $200 $100 Welcome.
What size font should be used? points How many different fonts should be used on a single slide? Only 1 FONTS.
COLOR THEORYCOLOR THEORY. Pigment vs. Light pigments - "subtractive." Red, blue and yellow can create all the colors of the color wheel. (paint, pigments)
Using the Elements and Principles of Design in Photography.
COUNTING Directions: Write your word on the I pad and on the paper. Count the amount of letters in your word and then find the color that matches that.
Begin on page 256 and define each term. Color wheel Primary colors Secondary colors Tertiary/intermediate colors Hue Value Shade Tint Intensity Neutral.
Elements of Design ACT-ADDI-1 Students will identify components related to the design process. C) Describe the elements and principles of design.
 Color  Texture  Shape  Line  Space  Value  Form.
Elements of Art Review. What is Value? Value  The lightness or darkness of a color.
By Allison Cohen Summer  Big  Simple  Clear  Consistent.
Graphics Concepts CS 2302, Fall /17/20142 Drawing in Android.
Color Web Design Professor Frank. Color Displays Based on cathode ray tubes (CRTs) or back- lighted flat-screen Monitors transmit light - displays use.
Elements of Art – The Building Blocks of Art Name: _______________ Date: __________ Univ: __________ Line is a mark with greater length than width. Lines.
CISC 110 Day 3 Introduction to Computer Graphics.
Hue: the property of light by which the color of an object is classified as red, blue, green, or yellow in reference to the spectrum. Saturation: the.
IMAGE EDITING Midterm Lecture Channels -Separation of the colors of the final images onto distinct sheets. Red, Green and Blue Red, Green and.
Section 3.5B: Parent Functions
Color Schemes For Interior Design. The Color Wheel The Color Wheel shows how colors are related to each other. Color is one of the elements of design.
Elements of Art Color Shape Line Form Space Texture Value Which is your favorite element? OK, my favorite is…
What is Computing? What can be Programmed? Creative Computing Processing Downloading Processing Dropbox Primitive Shapes – point – line – triangle – quad.
Is the practical guidance to color mixing and the visual effects of a specific color combination.
Now… The Basics of Design Basic Elements of Design Dots Lines Shapes Color Type Size Direction.
ELEMENTS OF DESIGN  CREATE A NOTE SHEET WRITING DOWN EACH OF THE ELEMENTS OF ART SEEN IN THE NEXT SLIDE.  LEAVE SPACE SO YOU CAN TAKE NOTES IN BETWEEN.
RED, YELLOW, and BLUE These colors cannot be made Used to make all other colors.
Four important design principles to improve your work
Use Chapter 11 to define: Primary colors Secondary colors
Learning our elements of art!
Basic Desktop Terminology
Elements of Design ACT-ADDI-1 Students will identify components related to the design process. C) Describe the elements and principles of design.
VALUE: Sketchbook Study Value: The gradation of tone from light to dark from white through grey to black.Value can be used to describe structure,
Study Guide By Tanner Galloway.
Competency 1 Megan Dodson.
Text and Illustrator.
Chapter 6.1 Visual Design.
Gulf Region Retail Sales
Lettering on Maps (Type)
Chapter 6.1 Visual Design.
Believable Colors Based on memory and experience
Average Number of Photons
The Elements of Art.
What Color is it?.
Gulf Region Retail Sales
Warm-Up 4 minutes Evaluate each expression for x = -2. 1) -x + 1
Color Theory Study Guide
The Quadratic Curve Wednesday, 01 May 2019.
Warm-Up 4 minutes Evaluate each expression for x = -2. 1) -x + 1
Quadratic Graphs.
Elements of Art Notes Term Definition Illustration Example: Term
The Quadratic Curve Monday, 27 May 2019.
Presentation transcript:

CS 456 Drawing

Component Widget Component Control Pane JComponent

Model View (Gulf of Evaluation) Controller (Gulf of Execution)

Drawing Models Pixels Stroke Region

Tank

Hue – The color (red, green, orange) Saturation – Amount of color vs. amount of gray/white Value – how light or dark is the color

Some junk on the wall Baseline, Ascent, Descent, Leading

Some junk Some junk Sans serif Serif

Some junk Some junk Spacing of letters Some junk

VA V A Kerning

Curves - Continuity G(0) G(1) G(2) Quadratic Cubic

Quadratic Bezier

Quadratic Bezier

Cubic Bezier G(0) G(1)

Region Shapes moveTo(x,y) lineTo(x,y) quadraticTo( cx, cy, x, y) cubicTo(c1x, c1y, c2x, c2y, x,y)

Quadratic Shape G.moveTo(P0x,P0y); G.quadraticTo(P1x,P1y,P2x,P2y);

Cubic Shape G.moveTo(A0x,A0y); G.cubicTo(A1x,A1y,A2x,A2y,A3x,A3y); G.cubicTo(B1x,B1y,B2x,B2y,B3x,B3y);

Catmull-Rom Curves P0, P1, P2, P3 P1, P2, P3, P4 P2, P3, P4, P5

Catmull-Rom P3, P0, P1, P2 P0, P1, P2, P3 P1, P2, P3, P0