Encyclopedia  |   World Factbook  |   World Flags  |   Reference Tables  |   List of Lists     
   Academic Disciplines  |   Historical Timeline  |   Themed Timelines  |   Biographies  |   How-Tos     
Your Ad Here
Sponsor by The Tattoo Collection


Vector graphics
Main Page | See live article | Alphabetical index

Vector graphics

Vector graphics or geometric modeling describes the use of geometrical primitives such as pointss, lines, curves, and polygons to represent images in computer graphics. It is used by contrast to the term raster graphics, which is the representation of images as a collection of pixels (dots).

Table of contents
1 Overview
2 Motivation
3 Typical primitive objects
4 Vector operations
5 3D modelling
6 See also

Overview

Virtually all current output devices must ultimately translate vector representations of an image to a raster format, but when working with vector graphics such a transformation is only done at the time the image is actually required and may be done completely differently depending on the device at which the rendering is to be targeted at.

In the 1970's and 1980's, special vector graphics systems were available, in which the electron beam of the CRT display monitor was steered directly to trace out the shapes required. These systems allowed very high-resolution line art to be displayed without the (for that time) huge memory requirements that an equivalent-resolution raster system would have had. Vector plotters used in technical drafting still draw vectors directly to paper.

The term is mainly used in the context of two-dimensional graphics. Virtually all modern 3-d rendering is done using extensions of 2-d vector graphics techniques.

Motivation

For example, consider a circle of radius r. The main pieces of information a program needs in order to draw this circle are

  1. the radius r
  2. the location of the center point of the circle
  3. stroke line style
  4. fill style (possibly empty)

Advantages to this style of drawing over raster graphics:

Typical primitive objects

This list is not complete. There are various types of curves (Catmull-Rom splines, NURBS etc.), which are useful in certain applications.

Often, a bitmap image is considered as a primitive object. From the conceptual view, it behaves as a rectangle.

Vector operations

Vector graphics editors typically allow to rotate, move, mirror, stretch, skew, generally perform affine transformations of objects, change z-order and combine the primitives into more complex objects.

More sophisticated transformations include boolean operations on closed shapes (union, difference, intersection...)

Vector graphics are ideal for simple or composite drawings that need to be device-independent, or do not need to achieve photo-realism. For example, the PostScript and PDF page description languages use a vector graphics model.

3D modelling

In 3D computer graphics, vectorized surface representations are most common (bitmaps can be used for special purposes such as surface texturing, height-field data and bumpmapping). At the low-end, simple meshes of polygons are used to represent geometric detail in applications where interactive frame-rates or simplicity are important. At the high-end, where one is willing to trade-off higher rendering times for increased image quality and precision, smooth surface representations such as Bézier patches, NURBS or Subdivision surfaces are used. One can however achieve a smooth surface rendring from a polygonal mesh through the use of shading algorithms such as Phong.

See also