1. What is random fractal?
The patterns in the random fractals are no longer perfect and the random defects at all scale.
2. Write about drawing scenes using OPENGL.
OpenGL draws scenes by combining the ambient ,diffuse and specular components of light that illuminate a vertex of an object. It uses the phong model to calculate the specular light component.
3. Give the types of textures.
There are two principle kinds of textures used. With a image texture a 2D image is pasted onto each surface of the object. With a solid texture the object is considered to be carved out of a block of solid material that itself has texturing.The ray traces reveals the color of the texture at each point on the surface of the object.
4. What is the purpose of scene class?
The scene class can read a file in the SDL language and build a list of objects in a scene.This class can be used for ray tracing as well as to build scenes using the following code:
Scene scn;
read(“myScene.dat”);
5. Define a Peano curve.
A curve can in fact fill the plane and therefore have a dimension of 2 such curves are called Peano curve.
The patterns in the random fractals are no longer perfect and the random defects at all scale.
2. Write about drawing scenes using OPENGL.
OpenGL draws scenes by combining the ambient ,diffuse and specular components of light that illuminate a vertex of an object. It uses the phong model to calculate the specular light component.
3. Give the types of textures.
There are two principle kinds of textures used. With a image texture a 2D image is pasted onto each surface of the object. With a solid texture the object is considered to be carved out of a block of solid material that itself has texturing.The ray traces reveals the color of the texture at each point on the surface of the object.
4. What is the purpose of scene class?
The scene class can read a file in the SDL language and build a list of objects in a scene.This class can be used for ray tracing as well as to build scenes using the following code:
Scene scn;
read(“myScene.dat”);
5. Define a Peano curve.
A curve can in fact fill the plane and therefore have a dimension of 2 such curves are called Peano curve.