Share on Facebook Share on Twitter Email
Answers.com

line drawing

 
Dictionary: line drawing

n.
A drawing made with lines only, especially one used as copy for a line cut.


Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics

A graphic image outlined by solid lines. The mass of the drawing is imagined by the viewer. See wireframe modeling.

Download Computer Desktop Encyclopedia to your iPhone/iTouch

WordNet: line drawing
Top
Note: click on a word meaning below to see its connections and related words.

The noun has one meaning:

Meaning #1: a drawing of the outlines of forms or objects
  Synonyms: delineation, depiction, limning


Wikipedia: Line drawing algorithm
Top

A line drawing algorithm is a graphical algorithm for approximating a line segment on discrete graphical media. On discrete media, such as pixel-based displays and printers, line drawing requires such an approximation (in nontrivial cases).

On continuous media, by contrast, no algorithm is necessary to draw a line. For example, oscilloscopes use natural phenomena to draw lines and curves.

A naïve line-drawing algorithm

dx = x2 - x1
dy = y2 - y1
for x from x1 to x2 {
	y = y1 + (dy) * (x - x1)/(dx)
	plot(x, y)
}

It is assumed here that the points have already been ordered so that x2 > x1. This algorithm works just fine when dx > = dy, but it is quite slow on a digital computer, as it requires floating-point calculations. If dx < dy, the line becomes quite sparse, and in the limiting case of dx = 0, only a single point is plotted!

List of line drawing algorithms

The following is a partial list of line drawing algorithms:


 
 

 

Copyrights:

Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2009. Published by Houghton Mifflin Company. All rights reserved.  Read more
Computer Desktop Encyclopedia. THIS COPYRIGHTED DEFINITION IS FOR PERSONAL USE ONLY.
All other reproduction is strictly prohibited without permission from the publisher.
© 1981-2009 Computer Language Company Inc.  All rights reserved.  Read more
WordNet. WordNet 1.7.1 Copyright © 2001 by Princeton University. All rights reserved.  Read more
Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Line drawing algorithm" Read more