CG Flashcards

1
Q

Bresenham circle algorithm

A

x = 0, y=R
p = 3-2R

if p<0
x = x+1
y=y
p(i+1) = p + 4*x(i+1) + 6

if p>=0
x= x+1
y=y-1
p(i+1) = p + 4(xi+1 - yi+1) + 10

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Bresenham line drawing algorithm

A

x = x1, y=y1
dx = x2-x1, dy= y2-y1
p = 2dx-dy

if p<0
x=x+1
y=y
p=p+2dy

else
x=x+1
y=y+1
p=p+2dy-2dx

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

DDA | Bresenham

A

floating point arithmetic
calculate slope, calculate dec par
accurate for high slopes, low slope
slower due to fl pt arithmetic
more alias artifacts for lines with high slopes
simple to implement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Rastar | Random

A

Electron beam scans entire screen
Low resolution
Cheaper
Scan conversion req
Video controller req
Dyanmic scene, Static scene

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

DDA algorithm

A

Digital Differential Analyzer
Incremental method where calculation performed at each step

dx = x2-x1
dy=y2=y1
if dx>dy
step = dx
yinc = dy/step xinc = dx/step

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Significance of region codes

A

Set of numbers assigned to each pixel
Boundary
Fill
Region Adjacency
Region merging/splitting
Region compression

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

View transformation

A

xv - xvmin = xw - xwmin . Sx

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Window and Viewport

A

Defines area of interest to be displayed
Defines the area on the display device where the rendered image will be displayed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

OpenGL structure

A

cross platform, open structured, rendering graphics on platforms

1 API
2 OpenGL state
3 Pipeline
4 OpenGL context

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

OpenGl pipeline

A

Vertex processing
Primitive assembly
Rastarization
Fragment processing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Benefits of OpenGL

A

1 Hardware Independence
2 Flexibility: OpenGL provides a flexible way for applications to specify the graphics data
3 Efficiency: OpenGL provides an efficient way for applications to render graphics
4 Scalability: OpenGL provides a scalable way for applications to render graphics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

OpenGL libraries

A

GLU
common utility tasks like setting up projects
GLUT
toolkit for rendering, creating windows
GLSL
shader tasks - small tasks run on the GPU
GLEW (Extention Wrangler)
cross platform library for accessing extensions
FreeGLUT
cross platform open source alternative

How well did you know this?
1
Not at all
2
3
4
5
Perfectly