Digital differential analyzer (graphics algorithm)
http://dbpedia.org/resource/Digital_differential_analyzer_(graphics_algorithm) an entity of type: Company
En gráficos por ordenador, una implementación de hardware o software de un (DDA) se usa para la interpolación lineal de variables sobre un intervalo entre un punto de comienzo y un punto de fin. Los DDAs se usan para rastreo de líneas, triángulos y polígonos. En la implementación más simple del algoritmo DDA interpola valores en intervalo [(xinicio, yinicio), (xfin, yfin)] por cálculo para cada xi las ecuaciones xi = xi−1+1, yi = yi−1 + Δy/Δx, donde Δx = xfin − xinicio y Δy = yfin − yinicio.
rdf:langString
Un analyseur différentiel numérique ou ADN (en anglais, DDA pour Digital Differential Analyzer) est un algorithme qui permet de tracer des approximations de segments de droites sur des médias discrets.
rdf:langString
L'algoritmo DDA (digital differential analyzer) è un algoritmo di rasterizzazione di linea. L'algoritmo DDA parte dall'osservazione che la pendenza di una retta passante per i punti e è esprimibile come: e che Da qui possiamo ricavare che per passare da un punto ad un punto dove , l'aumento di rispetto a dovrà essere ovvero:
rdf:langString
Алгоритм DDA-линии растеризует отрезок прямой между двумя заданными точками, используя вычисления в числах с плавающей запятой или целых числах.
rdf:langString
Алгоритм DDA-лінії растеризує відрізок прямої між початковою та кінцевою точками. В найпростішій реалізації алгоритм інтерполює значення з інтервалів [(xstart, ystart), (xend, yend)] обчислюючи для кожного xi вираз xi = xi−1+1/m, yi = yi−1 + m, де Δx = xend − xstart , Δy = yend − ystart та m = Δy/Δx. Абревіатура DDA в назві цього алгоритму комп'ютерної графіки походить від англ. Digital Differential Analyzer (цифровий диференціальний аналізатор) — обчислювальний пристрій, що застосовувалося раніше для генерації векторів. Алгоритм можна реалізувати використовуючи дійсні або цілі числа.
rdf:langString
In computer graphics, a digital differential analyzer (DDA) is hardware or software used for interpolation of variables over an interval between start and end point. DDAs are used for rasterization of lines, triangles and polygons. They can be extended to non linear functions, such as perspective correct texture mapping, , and traversing voxels. In fact any two consecutive points lying on this line segment should satisfy the equation.
rdf:langString
rdf:langString
Analizador diferencial digital
rdf:langString
Digital differential analyzer (graphics algorithm)
rdf:langString
Analyseur différentiel numérique
rdf:langString
Algoritmo DDA
rdf:langString
Алгоритм DDA-линии
rdf:langString
Алгоритм DDA-лінії
xsd:integer
12767224
xsd:integer
1109887557
rdf:langString
In computer graphics, a digital differential analyzer (DDA) is hardware or software used for interpolation of variables over an interval between start and end point. DDAs are used for rasterization of lines, triangles and polygons. They can be extended to non linear functions, such as perspective correct texture mapping, , and traversing voxels. In its simplest implementation for linear cases such as lines, the DDA algorithm interpolates values in interval by computing for each xi the equations xi = xi−1 + 1, yi = yi−1 + m, where m is the slope of the line. This slope can be expressed in DDA as follows: In fact any two consecutive points lying on this line segment should satisfy the equation.
rdf:langString
En gráficos por ordenador, una implementación de hardware o software de un (DDA) se usa para la interpolación lineal de variables sobre un intervalo entre un punto de comienzo y un punto de fin. Los DDAs se usan para rastreo de líneas, triángulos y polígonos. En la implementación más simple del algoritmo DDA interpola valores en intervalo [(xinicio, yinicio), (xfin, yfin)] por cálculo para cada xi las ecuaciones xi = xi−1+1, yi = yi−1 + Δy/Δx, donde Δx = xfin − xinicio y Δy = yfin − yinicio.
rdf:langString
Un analyseur différentiel numérique ou ADN (en anglais, DDA pour Digital Differential Analyzer) est un algorithme qui permet de tracer des approximations de segments de droites sur des médias discrets.
rdf:langString
L'algoritmo DDA (digital differential analyzer) è un algoritmo di rasterizzazione di linea. L'algoritmo DDA parte dall'osservazione che la pendenza di una retta passante per i punti e è esprimibile come: e che Da qui possiamo ricavare che per passare da un punto ad un punto dove , l'aumento di rispetto a dovrà essere ovvero:
rdf:langString
Алгоритм DDA-линии растеризует отрезок прямой между двумя заданными точками, используя вычисления в числах с плавающей запятой или целых числах.
rdf:langString
Алгоритм DDA-лінії растеризує відрізок прямої між початковою та кінцевою точками. В найпростішій реалізації алгоритм інтерполює значення з інтервалів [(xstart, ystart), (xend, yend)] обчислюючи для кожного xi вираз xi = xi−1+1/m, yi = yi−1 + m, де Δx = xend − xstart , Δy = yend − ystart та m = Δy/Δx. Абревіатура DDA в назві цього алгоритму комп'ютерної графіки походить від англ. Digital Differential Analyzer (цифровий диференціальний аналізатор) — обчислювальний пристрій, що застосовувалося раніше для генерації векторів. Алгоритм можна реалізувати використовуючи дійсні або цілі числа.
xsd:nonNegativeInteger
4537