| Dictionary: line drawing |
| 5min Related Video: line drawing |
| Computer Desktop Encyclopedia: line drawing |
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 |
The noun has one meaning:
Meaning #1:
a drawing of the outlines of forms or objects
Synonyms: delineation, depiction, limning
| Wikipedia: Line drawing algorithm |
| Please expand this article with text translated from the corresponding article in German Wikipedia. After translating, {{Translated|de|Rasterung von Linien}} must be added to the talk page to ensure copyright compliance.Translation instructions · Translate via Google |
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.
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!
The following is a partial list of line drawing algorithms:
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)
| dimension line (graphic arts) | |
| line cut | |
| whiteprint |
| What are horizontal lines in perspective drawings? Read answer... | |
| In a perspective drawing what is a horizon line? Read answer... | |
| The drawing of electoral lines? Read answer... |
| What is the heaviest lines in technical drawing? | |
| How do you draw the line y2x-1? | |
| How do you draw an oblique line? |
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 |
Mentioned in