Introduction p. 1 Java Features p. 2 Java Expansion p. 4 Getting, Setting Up, and Using Java p. 5 The Java Language p. 5 Java Swing Components p.

Size: px
Start display at page:

Download "Introduction p. 1 Java Features p. 2 Java Expansion p. 4 Getting, Setting Up, and Using Java p. 5 The Java Language p. 5 Java Swing Components p."

Transcription

1 Introduction p. 1 Java Features p. 2 Java Expansion p. 4 Getting, Setting Up, and Using Java p. 5 The Java Language p. 5 Java Swing Components p. 6 Components, Containers, and Layour Management p. 6 Checkboxes, Lists, Menus, and Scrolling p. 6 Colors p. 6 Display Text in A Graphic Window p. 7 Working With Images p. 7 Viewing BMP Graphic Files p. 7 Animation p. 7 Creating Your Own Web Page p. 8 Plotting Points, Lines, and Rectangles p. 8 Clipping p. 8 User Interfaces p. 8 Drawing and Filling Polygons p. 8 Drawing Circles, Ellipses, and Arcs p. 9 Using Threads with Java p. 9 Parametric Cubic Curves p. 9 Three-Dimensional Modeling p. 9 More Advanced Web Pages p. 9 Commercial Java Packages p. 9 Getting, Setting Up, and Using Java 2 p. 11 Downloading the Java Developer's Kit p. 12 Expanding the JDK on Your System p. 13 Compiling a Program p. 14 Additional Graphics Setups p. 17 Classes Used by Two or More Other Classes p. 17 Packages p. 20 Java Resources p. 21 The Java Language p. 25 Java as an Object Oriented Language p. 26 Java as a Compiled and Interpreted Language p. 27 Java and Applets p. 28 Java as an Improvement over C++ p. 28 Java Language Structure p. 28 Java Data Types p. 29 Strings p. 30 Operators p. 30

2 Operator Precedence p. 35 Initializing Data Items p. 35 Using Arrays p. 37 Conditional Statements p. 38 Using Loops p. 40 The Math Class p. 43 The Random Class p. 43 Random Numbers in a Given Range p. 46 Java Swing Components p. 47 The Abstract Window Toolkit (AWT) p. 48 Java AWT Classes p. 49 Swing Components p. 49 Swing Classes p. 52 Why Use Swing Components p. 56 Running a Program as an Application or an Applet p. 57 Components, Containers, and Layout Management p. 59 Containers and Components p. 60 Using Frames p. 60 Java's New Event Handling p. 64 Using Java Swing Components p. 71 Applets p. 72 Programs that Run Either as an Application or an Applet p. 74 Layouts p. 75 The Border Layout p. 75 The Flow Layout p. 77 The Grid Layout p. 79 The Grid Bag Layout p. 81 The Card Layout p. 86 The Box Layout p. 91 Checkboxes, Lists, Menus, and Scrolling p. 95 Checkboxes p. 96 Using Radio Buttons p. 102 Using Icons with Check Boxes p. 105 Choice Boxes and Lists p. 108 Using Menus p. 112 Scrolling p. 117 Colors p. 123 How Java Defines colors p. 124 The Java Predefined colors p Color PC Displays p Color VGA Displays p. 128

3 Setting Colors p. 128 Color Gradients p. 129 Displaying Text in a Graphics Window p. 135 Drawing a Line of Characters p. 136 A Text Program p. 136 Selecting a Font p. 139 Text Positioning p. 141 Word Wrap with Java 2 p. 142 Building a Swing Text Menu Bar p. 146 Working with Images p. 151 The Graphics Interchange Format (GIF) p. 152 JPEG File Exchange Format p. 153 A Simple JPEG File Viewing Program p. 155 Creating Your Own Image File p. 156 A Java Program for Viewing GIF and JPG Files p. 165 The FileDialog Class p. 167 Using the Java Swing filechooser Class p. 167 Working with Images p. 172 The GIF and JPG Picture Viewing Program p. 172 Selecting the List of Files to be Displayed p. 173 Thumbnail Graphics Display p. 174 Displaying a Full-Sized Picture p. 175 Viewing BMP Files p. 177 The BMP File Format p. 178 The BMP File Header p. 178 Painting a BMP Picture with the Image Class p. 180 Animation p. 189 Animated GIF Files p. 190 An Advanced Animation Viewer p. 191 Using Sprites p. 194 Making Your Own Animation Files p. 195 Pseudo-Animation p. 195 Anfy Java p. 196 Creating Your Own Web Page p. 199 A Simple Web Page Program p. 200 Transferring Your Page to the Web p. 203 Plotting Points, Lines, and Rectangles p. 205 Drawing Lines p. 206 Drawing Rectangles p. 210 Drawing Lines with Java 2D p. 217 Anti-Aliasing p. 222

4 Dashed and Dotted Lines p. 222 Scaling, Rotating, Skewing, and Translating Lines p. 227 Clipping Techniques p. 235 Random Straight Lines p. 236 Using a Clipping Rectangle p. 238 Clipping with Java 2D p. 242 User Interfaces p. 247 The Mandelbrot Set p. 248 Observer and Observable p. 253 The Mandelbrot Display p. 255 A Simpler Mandelbrot Set Program p. 256 Working Between Two Graphics: The Julia Set p. 260 Drawing and Filling Polygons p. 267 The Polygon Drawing Method p. 268 Drawing Polygons with Java 2D p. 270 Drawing Complex Curves with the Polygon Class p. 273 Filling Polygons p. 276 Creating Filled Polygons with Java 2D p. 280 Using an Array to Supply Polygon Data p. 283 Drawing Circles, Ellipses, and Arcs p. 287 Drawing and Filling Ellipses p. 288 Drawing and Filling Circles p. 289 Wide Line Circles and Ellipses p. 289 Drawing and Filling Arcs p. 289 Random Circles, Ellipses, and Arcs p. 292 Balloons p. 299 Pie Chart p. 302 Tilted Ellipses p. 305 Using Threads with Java p. 309 A Viewing Program with Threads p. 311 Animated Ellipses p. 316 Parametric Cubic Curves p. 321 Parametric Cubic Polynomials p. 322 The Bezier Curve p. 323 Mathematics of the Bezier Curve p. 323 The Bezier Curve Program p. 324 The Literal Canvas Class p. 333 The ForwardCanvas Class p. 334 The decasteljaucanvas Class p. 335 The BernsteinCanvas Class p. 337 Bezier Curves with Java 2D p. 337

5 Animated Bezier Curves p. 340 Bezier Curves with Many Control Points p. 346 The B-Spline Curve p. 350 Converting Bezier Points to B-Spline Control Points p. 351 B-Spline Curves with Many Control Points p. 356 Three-Dimensional Modeling p. 361 The Painter's Algorithm p. 363 The Earth.java Program p. 363 The Solid4 Class p. 369 More Advanced Web Pages p. 379 Multiple Web Pages p. 387 The TitleCanvas Class p. 388 What's the Best Way to Draw a Graphic? p. 388 The Dragon2 Class p. 389 The AddressDialog Method p. 391 Returning Data to the Originating Site p. 391 Commercial Java Packages p. 393 The WinEdit Editor p. 395 Microsoft Visual J++ p. 395 Symantic Visual Cafe p. 397 Appendix p. 399 Index p. 403 Table of Contents provided by Blackwell's Book Services and R.R. Bowker. Used with permission.

HTML p. 1 Introduction to HTML p. 1 Getting Started p. 1 The Structure of an HTML Page p. 1 HTML Basics p. 3 The Weather Forecast Page p.

HTML p. 1 Introduction to HTML p. 1 Getting Started p. 1 The Structure of an HTML Page p. 1 HTML Basics p. 3 The Weather Forecast Page p. Preface p. xv HTML p. 1 Introduction to HTML p. 1 Getting Started p. 1 The Structure of an HTML Page p. 1 HTML Basics p. 3 The Weather Forecast Page p. 4 Heading Tags p. 5 Horizontal Rules p. 7 HTML Tags

More information

MS Word 2007: Graphics. Lesson Notes Author: Pamela Schmidt. The Drawing Tools Format Ribbon appears when the object is selected.

MS Word 2007: Graphics. Lesson Notes Author: Pamela Schmidt. The Drawing Tools Format Ribbon appears when the object is selected. AutoShapes MS Word 2007: Graphics Lesson Notes Author: Pamela Schmidt To insert a shape, on the Insert Ribbon choose the Shapes control. When a shape tool is selected, a cross hair will appear when the

More information

Individual Test Item Specifications

Individual Test Item Specifications Individual Test Item Specifications 9400110- Principles of Scientific Visualization 2015 The contents of this document were developed under a grant from the United States Department of Education. However,

More information

Merits of QT for developing Imaging Applications UI

Merits of QT for developing Imaging Applications UI White Paper Merits of QT for developing Imaging Applications UI Amitkumar Sharma January 08, 2008 Trianz 2008 White Paper Page 1 Table of Contents 1.0 Executive Summary. ------------------------------------------------------------------------------------------------------------

More information

MS Publisher 2007: Graphics. Lesson Notes Author: Pamela Schmidt

MS Publisher 2007: Graphics. Lesson Notes Author: Pamela Schmidt MS Publisher 2007: Graphics Lesson Notes Author: Pamela Schmidt Auto Shapes When a shape tool is selected, a precision pointer (cross hair) will appear when the mouse pointer is taken over the document.

More information

Microsoft Word

Microsoft Word OBJECTS: Shapes (part 1) Shapes and the Drawing Tools Basic shapes can be used to graphically represent information or categories. The NOTE: Please read the Objects (add-on) document before continuing.

More information

CHAPTER 1 Graphics Systems and Models 3

CHAPTER 1 Graphics Systems and Models 3 ?????? 1 CHAPTER 1 Graphics Systems and Models 3 1.1 Applications of Computer Graphics 4 1.1.1 Display of Information............. 4 1.1.2 Design.................... 5 1.1.3 Simulation and Animation...........

More information

Roll No. : Invigilator's Signature :.. GRAPHICS AND MULTIMEDIA. Time Allotted : 3 Hours Full Marks : 70

Roll No. : Invigilator's Signature :.. GRAPHICS AND MULTIMEDIA. Time Allotted : 3 Hours Full Marks : 70 Name : Roll No. : Invigilator's Signature :.. CS/MCA/SEM-4/MCA-402/2012 2012 GRAPHICS AND MULTIMEDIA Time Allotted : 3 Hours Full Marks : 70 The figures in the margin indicate full marks. Candidates are

More information

Computer Applications Final Exam Study Guide

Computer Applications Final Exam Study Guide Name: Computer Applications Final Exam Study Guide Microsoft Word 1. To use -and-, position the pointer on top of the selected text, and then drag the selected text to the new location. 2. The Clipboard

More information

Supporting Materials

Supporting Materials Preface p. xxiii Introduction p. xxiii Key Features p. xxiii Chapter Outlines p. xxiv Supporting Materials p. xxvi Acknowledgments p. xxvii Java Fundamentals p. 1 Bits, Bytes, and Java p. 2 The Challenge

More information

2D Drafting Redefined

2D Drafting Redefined Scan QR Code to Redirect to Product Page IRONCAD DRAFT XG is a powerful 2D design environment for creating, detailing, and editing production designs. This environment offers unrivaled compatibility with

More information

USER S MANUAL Software Usage Agreement Registered Trademarks Notes on this Manual Disclaimer

USER S MANUAL Software Usage Agreement Registered Trademarks Notes on this Manual Disclaimer USER S MANUAL Software Usage Agreement Registered Trademarks Notes on this Manual Disclaimer 1 1.1 1.2 2 3 Introduction 2.1 2.2 Features System Requirements Installing Xyron Wishblade Software 3.1 3.2

More information

Part 1: Basics. Page Sorter:

Part 1: Basics. Page Sorter: Part 1: Basics Page Sorter: The Page Sorter displays all the pages in an open file as thumbnails and automatically updates as you add content. The page sorter can do the following. Display Pages Create

More information

Paint/Draw Tools. Foreground color. Free-form select. Select. Eraser/Color Eraser. Fill Color. Color Picker. Magnify. Pencil. Brush.

Paint/Draw Tools. Foreground color. Free-form select. Select. Eraser/Color Eraser. Fill Color. Color Picker. Magnify. Pencil. Brush. Paint/Draw Tools There are two types of draw programs. Bitmap (Paint) Uses pixels mapped to a grid More suitable for photo-realistic images Not easily scalable loses sharpness if resized File sizes are

More information

How This Book Is Organized Which Suites Are Covered? The Office Applications Introducing Microsoft Office 2007 p. 1 What's New in Office 2007? p.

How This Book Is Organized Which Suites Are Covered? The Office Applications Introducing Microsoft Office 2007 p. 1 What's New in Office 2007? p. Introduction p. xi How This Book Is Organized p. xii Which Suites Are Covered? p. xii The Office Applications p. xiii Introducing Microsoft Office 2007 p. 1 What's New in Office 2007? p. 3 The New User

More information

Copyright and License

Copyright and License Manual ver. 2 1 Copyright and License Original version of dbook was developed by Zeta Inc., NPO URAP and Eigo UEHARA. Current version is developed by Zeta Inc., NPO URAP, Eigo UEHARA and Masami ISODA.

More information

INKSCAPE BASICS. 125 S. Prospect Avenue, Elmhurst, IL (630) elmhurstpubliclibrary.org. Create, Make, and Build

INKSCAPE BASICS. 125 S. Prospect Avenue, Elmhurst, IL (630) elmhurstpubliclibrary.org. Create, Make, and Build INKSCAPE BASICS Inkscape is a free, open-source vector graphics editor. It can be used to create or edit vector graphics like illustrations, diagrams, line arts, charts, logos and more. Inkscape uses Scalable

More information

Polishing and Running a Presentation

Polishing and Running a Presentation Polishing and Running a Presentation Objectives Add pictures Add sound Add video Set slide transitions and timing Animate slide objects 2 Objectives Use speaker notes and slide show commands Print handouts

More information

This is the vector graphics "drawing" technology with its technical and creative beauty. SVG Inkscape vectors

This is the vector graphics drawing technology with its technical and creative beauty. SVG Inkscape vectors 1 SVG This is the vector graphics "drawing" technology with its technical and creative beauty SVG Inkscape vectors SVG 2 SVG = Scalable Vector Graphics is an integrated standard for drawing Along with

More information

- Is the process of combining texts and graphics layout to produce publications e.g. cards,

- Is the process of combining texts and graphics layout to produce publications e.g. cards, DESKTOP PUBLISHING (DTP) - Is the process of combining texts and graphics layout to produce publications e.g. cards, newspapers, catalogues etc. - A special DTP software is always used. PURPOSE OF DTP

More information

Impress Guide Chapter 11 Setting Up and Customizing Impress

Impress Guide Chapter 11 Setting Up and Customizing Impress Impress Guide Chapter 11 Setting Up and Customizing Impress This PDF is designed to be read onscreen, two pages at a time. If you want to print a copy, your PDF viewer should have an option for printing

More information

CS123 INTRODUCTION TO COMPUTER GRAPHICS. Describing Shapes. Constructing Objects in Computer Graphics 1/15

CS123 INTRODUCTION TO COMPUTER GRAPHICS. Describing Shapes. Constructing Objects in Computer Graphics 1/15 Describing Shapes Constructing Objects in Computer Graphics 1/15 2D Object Definition (1/3) Lines and polylines: Polylines: lines drawn between ordered points A closed polyline is a polygon, a simple polygon

More information

CHETTINAD COLLEGE OF ENGINEERING & TECHNOLOGY CS2401 COMPUTER GRAPHICS QUESTION BANK

CHETTINAD COLLEGE OF ENGINEERING & TECHNOLOGY CS2401 COMPUTER GRAPHICS QUESTION BANK CHETTINAD COLLEGE OF ENGINEERING & TECHNOLOGY DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING CS2401 COMPUTER GRAPHICS QUESTION BANK PART A UNIT I-2D PRIMITIVES 1. Define Computer graphics. 2. Define refresh

More information

Generating Vectors Overview

Generating Vectors Overview Generating Vectors Overview Vectors are mathematically defined shapes consisting of a series of points (nodes), which are connected by lines, arcs or curves (spans) to form the overall shape. Vectors can

More information

DC2 File Format. 1. Header line 2. Entity line 3. Point line 4. String line

DC2 File Format. 1. Header line 2. Entity line 3. Point line 4. String line DC2 File Format The DesignCAD DC2 drawing file is an ASCII file, with the data present in character format. Each "record" in the file is actually a line in a text file. There are four types of records,

More information

ROBO Master OPS656. USER'S MANUAL MANUAL NO. OPS656m-UM Introduction 1.1 Features System Requirements... 3

ROBO Master OPS656. USER'S MANUAL MANUAL NO. OPS656m-UM Introduction 1.1 Features System Requirements... 3 USER'S MANUAL MANUAL NO. m-um-152 Software Usage Agreement... 2 Registered Trademarks... 2 Notes on this Manual... 2 Disclaimer... 2 1 Introduction 1.1 Features... 3 1.2 System Requirements... 3 2 Installing

More information

WORD Creating Objects: Tables, Charts and More

WORD Creating Objects: Tables, Charts and More WORD 2007 Creating Objects: Tables, Charts and More Microsoft Office 2007 TABLE OF CONTENTS TABLES... 1 TABLE LAYOUT... 1 TABLE DESIGN... 2 CHARTS... 4 PICTURES AND DRAWINGS... 8 USING DRAWINGS... 8 Drawing

More information

Manipal Institute of Technology Manipal University Manipal

Manipal Institute of Technology Manipal University Manipal MIT/CSE/LM/13/R0 COMPUTER GRAPHICS LAB MANUAL FIFTH SEMESTER Department of Computer Science & Engineering 10pt. CREDIT SYSTEM (2014) Prepared by Approved by (Dr. P. C. Siddalingaswamy) (Head of the Department)

More information

FactoryLink 7. Version 7.0. Client Builder Reference Manual

FactoryLink 7. Version 7.0. Client Builder Reference Manual FactoryLink 7 Version 7.0 Client Builder Reference Manual Copyright 2000 United States Data Corporation. All rights reserved. NOTICE: The information contained in this document (and other media provided

More information

Final Study Guide Arts & Communications

Final Study Guide Arts & Communications Final Study Guide Arts & Communications Programs Used in Multimedia Developing a multimedia production requires an array of software to create, edit, and combine text, sounds, and images. Elements of Multimedia

More information

VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur 603203. DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Year & Semester : III Year, V Semester Section : CSE - 1 & 2 Subject Code : CS6504 Subject

More information

Table of Contents. Preface... xiii

Table of Contents. Preface... xiii Table of Contents Preface...................................................... xiii Part I. SVG on the Web 1. Graphics from Vectors....................................... 3 Defining an SVG in Code 4 Simple

More information

Clipping Algorithms; 8-5. Computer Graphics. Spring CS4815

Clipping Algorithms; 8-5. Computer Graphics. Spring CS4815 Computer Graphics Spring 2016-2017 Outline Clipping Algorithms; 8-5 1 Clipping Algorithms; 8-5 Announcements Mid-term: Week07?? Clipping: Introduction It is common for a region to be defined so that only

More information

Professional Powerpoint Presentation II

Professional Powerpoint Presentation II Professional Powerpoint Presentation II Facilitator: Patrick Ng Fall 2012 Practical concerns in delivering presentation Creative Visual Possibility & Optimization for Presentation PPTII & IV: Quick Style,

More information

STIPlotDigitizer. User s Manual

STIPlotDigitizer. User s Manual STIPlotDigitizer User s Manual Table of Contents What is STIPlotDigitizer?... 3 Installation Guide... 3 Initializing STIPlotDigitizer... 4 Project GroupBox... 4 Import Image GroupBox... 5 Exit Button...

More information

Solo 4.6 Release Notes

Solo 4.6 Release Notes June9, 2017 (Updated to include Solo 4.6.4 changes) Solo 4.6 Release Notes This release contains a number of new features, as well as enhancements to the user interface and overall performance. Together

More information

User Guide Belltech Systems, LLC

User Guide Belltech Systems, LLC User Guide Belltech Systems, LLC http://www.belltechsystems.com May, 2006 1. Introducing Belltech CaptureXT 2. Installation and Uninstallation Installation Running the Application Uninstallation 3. User

More information

The AWT Package, An Overview

The AWT Package, An Overview Richard G Baldwin (512) 223-4758, baldwin@austin.cc.tx.us, http://www2.austin.cc.tx.us/baldwin/ The AWT Package, An Overview Java Programming, Lecture Notes # 110, Revised 02/21/98. Preface Introduction

More information

Chapter 5 Managing Graphic Objects

Chapter 5 Managing Graphic Objects Impress Guide Chapter 5 Managing Graphic Objects Moving, rotating, distorting, and positioning objects; animations; Fontwork This PDF is designed to be read onscreen, two pages at a time. If you want to

More information

In this course we will need a set of techniques to represent curves and surfaces in 2-d and 3-d. Some reasons for this include

In this course we will need a set of techniques to represent curves and surfaces in 2-d and 3-d. Some reasons for this include Parametric Curves and Surfaces In this course we will need a set of techniques to represent curves and surfaces in 2-d and 3-d. Some reasons for this include Describing curves in space that objects move

More information

Corel Draw 11. What is Vector Graphics?

Corel Draw 11. What is Vector Graphics? Corel Draw 11 Corel Draw is a vector based drawing that program that makes it easy to create professional artwork from logos to intricate technical illustrations. Corel Draw 11's enhanced text handling

More information

BCSCCS407R01 JAVA PROGRAMMING LABORATORY

BCSCCS407R01 JAVA PROGRAMMING LABORATORY BCSCCS407R01 JAVA PROGRAMMING LABORATORY School of Computing Shanmugha Arts, Science, Technology and Research Academy [SASTRA] Thanjavur 613 401 List of Experiments 1. Polymorphism in java. 2. Inheritance

More information

MS WORD INSERTING PICTURES AND SHAPES

MS WORD INSERTING PICTURES AND SHAPES MS WORD INSERTING PICTURES AND SHAPES MICROSOFT WORD INSERTING PICTURES AND SHAPES Contents WORKING WITH ILLUSTRATIONS... 1 USING THE CLIP ART TASK PANE... 2 INSERTING A PICTURE FROM FILE... 4 FORMATTING

More information

Advanced Java 2014

Advanced Java 2014 Practical No. 1 060003 Advanced Java 2014 Write a program to take input from user and ask the user to enter any character for which the user wants to calculate occurrences of it. Program should check whether

More information

Table of Contents The University of Akron These materials were developed and are owned by The University of Akron. All rights reserved.

Table of Contents The University of Akron These materials were developed and are owned by The University of Akron. All rights reserved. Table of Contents COURSE OVERVIEW... 2 CONVENTIONS USED IN THIS MANUAL... 3 LESSON 1: SYMBOLS... 4 INSERTING SYMBOLS... 4 USING AUTOCORRECT TO INSERT SYMBOLS... 5 TURN ON AUTOCORRECT... 5 LESSON 2: SPECIAL

More information

Image creation with PHP

Image creation with PHP Image creation with PHP By Kore Nordmann PHP Unconference Hamburg 25.04.08 About me Kore Nordmann Studying computer science at the University Dortmund Working for ez systems on ez components Maintainer

More information

DIS: Design and imaging software

DIS: Design and imaging software Using IT productivity tools and applications This is the ability to use a software application designed to create, modify and layout artwork or images for display in print or on a screen (eg vector graphics

More information

TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking

TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking Items at Low International Benchmark (400) M01_05 M05_01 M07_04 M08_01 M09_01 M13_01 Solves a word problem

More information

Introduction To Inkscape Creating Custom Graphics For Websites, Displays & Lessons

Introduction To Inkscape Creating Custom Graphics For Websites, Displays & Lessons Introduction To Inkscape Creating Custom Graphics For Websites, Displays & Lessons The Inkscape Program Inkscape is a free, but very powerful vector graphics program. Available for all computer formats

More information

User Guide. DrawAnywhere.com: User Guide

User Guide. DrawAnywhere.com: User Guide DrawAnywhere.com: User Guide DrawAnywhere.com is an online diagramming & flow charting application with the look & feel of a desktop application! User Guide http://www.drawanywhere.com August, 2007 Table

More information

Prentice Hall. Learning Media Design with Adobe CS4 (Skintik) Alabama - Course of Study - Interactive Multimedia Design

Prentice Hall. Learning Media Design with Adobe CS4 (Skintik) Alabama - Course of Study - Interactive Multimedia Design Prentice Hall Learning Media Design with Adobe CS4 C O R R E L A T E D T O Learning Media Design with Adobe CS4 Students will: Multimedia Components 1. Compare aspects of multimedia. Presentation Desktop

More information

COMPUTER GRAPHICS, MULTIMEDIA AND ANIMATION, Second Edition (with CD-ROM) Malay K. Pakhira

COMPUTER GRAPHICS, MULTIMEDIA AND ANIMATION, Second Edition (with CD-ROM) Malay K. Pakhira Computer Graphics, Multimedia and Animation SECOND EDITION Malay K. Pakhira Assistant Professor Department of Computer Science and Engineering Kalyani Government Engineering College Kalyani New Delhi-110001

More information

EXAMINATIONS 2017 TRIMESTER 2

EXAMINATIONS 2017 TRIMESTER 2 EXAMINATIONS 2017 TRIMESTER 2 CGRA 151 INTRODUCTION TO COMPUTER GRAPHICS Time Allowed: TWO HOURS CLOSED BOOK Permitted materials: Silent non-programmable calculators or silent programmable calculators

More information

COMPUTER AIDED ENGINEERING DESIGN (BFF2612)

COMPUTER AIDED ENGINEERING DESIGN (BFF2612) COMPUTER AIDED ENGINEERING DESIGN (BFF2612) BASIC MATHEMATICAL CONCEPTS IN CAED by Dr. Mohd Nizar Mhd Razali Faculty of Manufacturing Engineering mnizar@ump.edu.my COORDINATE SYSTEM y+ y+ z+ z+ x+ RIGHT

More information

Road Map. Introduction to Java Applets Review applets that ship with JDK Make our own simple applets

Road Map. Introduction to Java Applets Review applets that ship with JDK Make our own simple applets Java Applets Road Map Introduction to Java Applets Review applets that ship with JDK Make our own simple applets Introduce inheritance Introduce the applet environment html needed for applets Reading:

More information

Paint Brush. Airbrush Kinked. Pencil Basic. Eraser Polygon. Bucket. Blend. Wand. Marquee. Row Selection Polygon. Column Selection. Oval.

Paint Brush. Airbrush Kinked. Pencil Basic. Eraser Polygon. Bucket. Blend. Wand. Marquee. Row Selection Polygon. Column Selection. Oval. Canvas X Tools Canvas X Tools Selection tools Painting Line Selection Paint Brush Line Lasso selection Airbrush Kinked Direct edit lasso selection Neon Smooth Kinked Direct group selection Pencil Basic

More information

End-Term Examination

End-Term Examination Paper Code: MCA-108 Paper ID : 44108 Second Semester [MCA] MAY-JUNE 2006 Q. 1 Describe the following in brief :- (3 x 5 = 15) (a) QUADRATIC SURFACES (b) RGB Color Models. (c) BSP Tree (d) Solid Modeling

More information

Visualization in CoDeSys V3

Visualization in CoDeSys V3 Visualization in CoDeSys V3 Public 11.10.2011 Contents Requirements of a visualization tool CoDeSys Visualization Available visualization clients in CoDeSys CoDeSys Visualization CoDeSys HMI CoDeSys WebVisu

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Curves & Splines. Assignment #3. Overview & Objectives. Due Dates. CPSC 453 Fall 2018 University of Calgary

Curves & Splines. Assignment #3. Overview & Objectives. Due Dates. CPSC 453 Fall 2018 University of Calgary Curves & Splines Assignment #3 CPSC 453 Fall 2018 University of Calgary Overview & Objectives The main objective of this third assignment in CPSC 453 is to learn to work with Bézier curves and splines.

More information

03 Vector Graphics. Multimedia Systems. 2D and 3D Graphics, Transformations

03 Vector Graphics. Multimedia Systems. 2D and 3D Graphics, Transformations Multimedia Systems 03 Vector Graphics 2D and 3D Graphics, Transformations Imran Ihsan Assistant Professor, Department of Computer Science Air University, Islamabad, Pakistan www.imranihsan.com Lectures

More information

Paint Tutorial (Project #14a)

Paint Tutorial (Project #14a) Paint Tutorial (Project #14a) In order to learn all there is to know about this drawing program, go through the Microsoft Tutorial (below). (Do not save this to your folder.) Practice using the different

More information

CS337 INTRODUCTION TO COMPUTER GRAPHICS. Describing Shapes. Constructing Objects in Computer Graphics. Bin Sheng Representing Shape 9/20/16 1/15

CS337 INTRODUCTION TO COMPUTER GRAPHICS. Describing Shapes. Constructing Objects in Computer Graphics. Bin Sheng Representing Shape 9/20/16 1/15 Describing Shapes Constructing Objects in Computer Graphics 1/15 2D Object Definition (1/3) Lines and polylines: Polylines: lines drawn between ordered points A closed polyline is a polygon, a simple polygon

More information

ENVI Tutorial: Map Composition

ENVI Tutorial: Map Composition ENVI Tutorial: Map Composition Table of Contents OVERVIEW OF THIS TUTORIAL...3 MAP COMPOSITION IN ENVI...4 Open and Display Landsat TM Data...4 Build the QuickMap Template...4 MAP ELEMENTS...6 Adding Virtual

More information

"Unpacking the Standards" 4th Grade Student Friendly "I Can" Statements I Can Statements I can explain why, when and how I got my answer.

Unpacking the Standards 4th Grade Student Friendly I Can Statements I Can Statements I can explain why, when and how I got my answer. 0406.1.1 4th Grade I can explain why, when and how I got my answer. 0406.1.2 I can identify the range of an appropriate estimate. I can identify the range of over-estimates. I can identify the range of

More information

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week WEB DESIGNING HTML HTML - Introduction HTML - Elements HTML - Tags HTML - Text HTML - Formatting HTML - Pre HTML - Attributes HTML - Font HTML - Text Links HTML - Comments HTML - Lists HTML - Images HTML

More information

Chapter 6 Formatting Graphic Objects

Chapter 6 Formatting Graphic Objects Impress Guide Chapter 6 OpenOffice.org Copyright This document is Copyright 2007 by its contributors as listed in the section titled Authors. You can distribute it and/or modify it under the terms of either

More information

Working with Charts Stratum.Viewer 6

Working with Charts Stratum.Viewer 6 Working with Charts Stratum.Viewer 6 Getting Started Tasks Additional Information Access to Charts Introduction to Charts Overview of Chart Types Quick Start - Adding a Chart to a View Create a Chart with

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

Beginning Programming (Two Semesters) Semester One. Module One: Intro to Beginning Programming. Module Two: Computer Careers

Beginning Programming (Two Semesters) Semester One. Module One: Intro to Beginning Programming. Module Two: Computer Careers Beginning Programming (Two Semesters) Description: The major goal of this course is for students to develop the computer science skills of algorithm development problem solving and programming. While the

More information

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23 PowerPoint Level 1 Table of Contents Chapter 1 Getting Started... 7 Interacting with PowerPoint... 7 Slides... 7 I. Adding Slides... 8 II. Deleting Slides... 8 III. Cutting, Copying and Pasting Slides...

More information

Intermediate/Advanced. Faculty Development Workshop FSE Faculty retreat April 18, 2012

Intermediate/Advanced. Faculty Development Workshop FSE Faculty retreat April 18, 2012 Intermediate/Advanced Faculty Development Workshop FSE Faculty retreat April 18, 2012 Remote Desktop Sharing Quick Reference Guide for Moderators The Moderator or a Participant may request control of another

More information

Presents: PowerPoint 101. Adapted from the Texas State Library s TEAL for All Texans Student Resources Manual

Presents: PowerPoint 101. Adapted from the Texas State Library s TEAL for All Texans Student Resources Manual Presents: PowerPoint 101 Adapted from the Texas State Library s TEAL for All Texans Student Resources Manual PowerPoint Topics Intro to PowerPoint Designing a Presentation The Next Level Goals and Objectives

More information

ощ 'ршорвшэш! цвн-эориэу ощ 'sajbpossv # PIPG DUJ 'ssjmoossv ^ PIPG pipa w н OX ЛЮН VAV

ощ 'ршорвшэш! цвн-эориэу ощ 'sajbpossv # PIPG DUJ 'ssjmoossv ^ PIPG pipa w н OX ЛЮН VAV ощ 'ршорвшэш! цвн-эориэу ощ 'sajbpossv # PIPG DUJ 'ssjmoossv ^ PIPG pipa w н OX ЛЮН VAV Contents Preface Chapter 1 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19

More information

Essential Series. Springer-Verlag London Ltd.

Essential Series. Springer-Verlag London Ltd. Essential Series Springer-Verlag London Ltd. Also in this series: Essential Visual Basic 4.0 fast 3-540-19998-5 Essential Delphi 2.0 fast 3-540-76026-1 Essential Java fast 3-540-76052-0 Essential Visual

More information

Google LayOut 2 Help. Contents

Google LayOut 2 Help. Contents Contents Contents... 1 Welcome to LayOut... 9 What's New in this Release?... 10 Learning LayOut... 12 Technical Support... 14 Welcome to the LayOut Getting Started Guide... 15 Introduction to the LayOut

More information

PowerPoint Introduction. Video: Slide Basics. Understanding slides and slide layouts. Slide Basics

PowerPoint Introduction. Video: Slide Basics. Understanding slides and slide layouts. Slide Basics PowerPoint 2013 Slide Basics Introduction PowerPoint presentations are made up of a series of slides. Slides contain the information you will present to your audience. This might include text, pictures,

More information

5 Drawing Stuff in 2D

5 Drawing Stuff in 2D 16 Advanced Java for Bioinformatics, WS 17/18, D. Huson, November 6, 2017 5 Drawing Stuff in 2D The scene graph is a tree whose nodes are layout items, controls and, as we will see, graphic objects. JavaFX

More information

Course Title: Computer Graphics Course no: CSC209

Course Title: Computer Graphics Course no: CSC209 Course Title: Computer Graphics Course no: CSC209 Nature of the Course: Theory + Lab Semester: III Full Marks: 60+20+20 Pass Marks: 24 +8+8 Credit Hrs: 3 Course Description: The course coversconcepts of

More information

V-BOX Cloud Configuration

V-BOX Cloud Configuration V-BOX Cloud Configuration Website: http://www.we-con.com.cn/en Technical Support: support@we-con.com.cn Skype: fcwkkj Phone: 86-591-87868869 QQ: 1043098682 Technical forum: http://wecon.freeforums.net/

More information

Paint Brush. Pencil. Eraser. Marker. Airbrush. Neon. Bucket. Blend. Blur. Sharpen. Rubber Stamp. Smudge. Dodge. Burn. Sponge. Transparency.

Paint Brush. Pencil. Eraser. Marker. Airbrush. Neon. Bucket. Blend. Blur. Sharpen. Rubber Stamp. Smudge. Dodge. Burn. Sponge. Transparency. Canvas Tools Canvas Tools Selection tools Painting Line Rectangle Oval Selection Lasso selection Direct edit lasso selection Direct group selection Direct edit selection Hyperlink pointer Rectangle Rounded

More information

Impress Guide. Chapter 11 Setting Up and Customizing Impress

Impress Guide. Chapter 11 Setting Up and Customizing Impress Impress Guide Chapter 11 Setting Up and Customizing Impress Copyright This document is Copyright 2007 2013 by its contributors as listed below. You may distribute it and/or modify it under the terms of

More information

MyProgram m i ng Lab. get with the programming. Through the power of practice and immediate personalized

MyProgram m i ng Lab. get with the programming. Through the power of practice and immediate personalized get with the programming Through the power of practice and immediate personalized feedback, MyProgrammingLab improves your performance. MyProgram m i ng Lab Learn more at www.myprogramminglab.com Preface

More information

GL9: Engineering Communications. GL9: CAD techniques. Curves Surfaces Solids Techniques

GL9: Engineering Communications. GL9: CAD techniques. Curves Surfaces Solids Techniques 436-105 Engineering Communications GL9:1 GL9: CAD techniques Curves Surfaces Solids Techniques Parametric curves GL9:2 x = a 1 + b 1 u + c 1 u 2 + d 1 u 3 + y = a 2 + b 2 u + c 2 u 2 + d 2 u 3 + z = a

More information

XD++ Professional Edition -- it is designed for building professional flow diagramming applications only.

XD++ Professional Edition -- it is designed for building professional flow diagramming applications only. UCanCode XD++ MFC Library is the World's leading diagramming component / diagramming solution for Visual Studio. It is is a fully managed, extensible and powerful diagramming framework, which can help

More information

Bezier Curves. An Introduction. Detlef Reimers

Bezier Curves. An Introduction. Detlef Reimers Bezier Curves An Introduction Detlef Reimers detlefreimers@gmx.de http://detlefreimers.de September 1, 2011 Chapter 1 Bezier Curve Basics 1.1 Linear Interpolation This section will give you a basic introduction

More information

Lesson 3 Creating and Using Graphics

Lesson 3 Creating and Using Graphics Lesson What you will learn: how to delete a sprite and import a new sprite how to draw using the pen feature of Scratch how to use the pen up and pen down feature how to change the colour of the pen how

More information

Year 8 Key Performance Indicators Maths (Number)

Year 8 Key Performance Indicators Maths (Number) Key Performance Indicators Maths (Number) M8.1 N1: I can solve problems by adding, subtracting, multiplying and dividing decimals. Use correct notation for recurring decimals, know the denominators of

More information

Scalable Vector Graphics (SVG) vector image World Wide Web Consortium (W3C) defined with XML searched indexed scripted compressed Mozilla Firefox

Scalable Vector Graphics (SVG) vector image World Wide Web Consortium (W3C) defined with XML searched indexed scripted compressed Mozilla Firefox SVG SVG Scalable Vector Graphics (SVG) is an XML-based vector image format for twodimensional graphics with support for interactivity and animation. The SVG specification is an open standard developed

More information

MICROSOFT EXCEL Working with Charts

MICROSOFT EXCEL Working with Charts MICROSOFT EXCEL 2010 Working with Charts Introduction to charts WORKING WITH CHARTS Charts basically represent your data graphically. The data here refers to numbers. In Excel, you have various types of

More information

Microsoft Office Word 2016 for Mac

Microsoft Office Word 2016 for Mac Microsoft Office Word 2016 for Mac Working with Graphics University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information

More information

Configuring Personnel and Badges

Configuring Personnel and Badges CHAPTER 10 This chapter describes how to create the personnel records and badges used to access doors in the Cisco Physical Access Control system. Note For instructions to synchronize Cisco PAM with personnel

More information

Paint Brush. Airbrush. Neon. Pencil. Marker. Eraser. Bucket. Blend. Wand. Marquee. Row Selection. Column Selection. Oval. Lasso. Polygon Lasso.

Paint Brush. Airbrush. Neon. Pencil. Marker. Eraser. Bucket. Blend. Wand. Marquee. Row Selection. Column Selection. Oval. Lasso. Polygon Lasso. Canvas X Tools Canvas X Tools Selection tools Painting Line Selection Paint Brush Line Lasso selection Airbrush Kinked Direct edit lasso selection Neon Smooth Kinked Direct group selection Pencil Basic

More information

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements?

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements? BASIC GAUGE CREATION The Video VBox setup software is capable of using many different image formats for gauge backgrounds, static images, or logos, including Bitmaps, JPEGs, or PNG s. When the software

More information

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 3 BREAK... 4 DEFINITIONS... 4 STEP BY STEP- SECTION BREAK... 6 PAGE NUMBERS...

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 3 BREAK... 4 DEFINITIONS... 4 STEP BY STEP- SECTION BREAK... 6 PAGE NUMBERS... TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 3 BREAK... 4 DEFINITIONS... 4 WHY WOULD YOU USE THIS?... 4 STEP BY STEP- PAGE BREAK... 4 ALTERNATIVE METHODS... 5 STEP BY STEP- SECTION BREAK...

More information

WEB DESIGNING SYLLABUS

WEB DESIGNING SYLLABUS WEB DESIGNING SYLLABUS AAvhdvchdvchdvhdh HTML HTML - Introduction HTML - Elements HTML - Tags HTML - Text HTML - Formatting HTML - Pre HTML - Attributes HTML - Font HTML - Text Links HTML - Comments HTML

More information

Table of Contents. iii

Table of Contents. iii ToolBook Concepts Table of Contents Welcome... 1 The Interface... 3 The Main Window... 3 The Menu Bar... 3 The Tool Bar... 4 View Descriptions of Icons on the Tool Bar... 5 Move and Resize the Tool Bar...

More information

GO! with Microsoft PowerPoint 2016 Comprehensive

GO! with Microsoft PowerPoint 2016 Comprehensive GO! with Microsoft PowerPoint 2016 Comprehensive First Edition Chapter 3 Enhancing a Presentation with Animation, Video, Tables, and Charts Learning Objectives Customize Slide Backgrounds and Themes Animate

More information

Using PowerPoint in Effective Presentations

Using PowerPoint in Effective Presentations Using PowerPoint in Effective Presentations MS PowerPoint Date: 26th of February 2014 Time: 14:00-16:00 p.m. Room: E1.17/E1.18 Science East 1 Introduction Session Facilitators Name: Education: Accenture

More information

HSC Chemistry 6.0 User's Guide

HSC Chemistry 6.0 User's Guide HSC Chemistry 6.0 40-1(74) HSC Chemistry 6.0 User's Guide Volume 2 / 2 Sim Flowsheet Module Antti Roine 06120-ORC-T Outotec Research Oy Information Service P.O. Box 69 FIN - 28101 PORI, FINLAND Fax: +358-20

More information