Difference between revisions of "Vector graphics"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Def)
 
(etc)
Line 1: Line 1:
'''Vector graphics''' is the use of geometrical primitives such as points, lines, curves, and shapes or polygons—all of which are based on mathematical expressions—to represent images in [[computer graphics]].
+
'''Vector graphics''' is the use of geometrical primitives such as points, lines, curves, and shapes or polygons -- all of which are based on mathematical expressions -- to represent images in [[computer graphics]].
  
 
Vector graphics are based on vectors (also called paths), which lead through locations called control points or nodes.  
 
Vector graphics are based on vectors (also called paths), which lead through locations called control points or nodes.  
Line 17: Line 17:
 
== See Also ==
 
== See Also ==
  
 +
* [[Digital image]]
 
* [[Image file formats]]
 
* [[Image file formats]]
 
* [[Scalable Vector Graphics|Scalable Vector Graphics]]
 
* [[Scalable Vector Graphics|Scalable Vector Graphics]]

Revision as of 15:31, 26 August 2015

Vector graphics is the use of geometrical primitives such as points, lines, curves, and shapes or polygons -- all of which are based on mathematical expressions -- to represent images in computer graphics.

Vector graphics are based on vectors (also called paths), which lead through locations called control points or nodes.

Each of these points has a definite position on the x and y axes of the work plane and determines the direction of the path; further, each path may be assigned a stroke color, shape, thickness, and fill.

These properties don't increase the size of vector graphics files in a substantial manner, as all information resides in the document's structure, which describes solely how the vector should be drawn.

Vector graphics can be magnified infinitely without loss of quality, while pixel-based graphics cannot.

The term vector graphics is typically used only for 2D (planar) graphics objects, in order to distinguish them from 2D raster graphics, which are also very common.

3D graphics as commonly implemented today (e.g., in OpenGL) are typically described using primitives like 3D points and polygons connecting these (which in turn describe surfaces); these 3D primitives are much more similar to vector graphics than to raster graphics, but aren't explicitly called vector graphics.

The equivalent of raster graphics in the 3D world are voxel-based graphics.

See Also

External Links