Description
ECE4893/8893 Fall Semester, 2015
Using OpenGL (Version 2.0)
1. Test 1 – Draw the Icosahedron. Simply draw the Icosahedron in 3–D space and display it from any viewing point of your choosing. The result should look similar to the figure below. Be sure to draw both the triangles polygons (the blue faces in this figure) and the polylines (the white lines in this figure). GRAD STUDENTS make each face a different color (use any algorithm of your choosing).
2. Test 2 – Idential to test 1, but add a 10 hertz (update every 100ms) and animation rotation about both the x andy axes. You should rotate approximately 1 degree on each update.
3. Test 3 – Start with the Icosahedron and find the center point of each edge of each of the 20 triangles. Next create a vector from the 0,0,0 point to the midpoint of each edge. These midpoints will NOT be one unit from the enter. Extend these vectors to be exactly one unit from the origin, and then subdivide the original triangle into four smaller triangles, with the vertices all being one unit from the origin. GRAD STUDENTS make each face a different color (use any algorithm of your choosing). The result should look similar to the figure below.
4. Test 4 – Identical to test 3 but adding rotation as in test 2.
5. Test 5 – A command line argument will specify the depth of the subdividing the rectangles. Test 3 is a depth of one (subdivide the triangles just once). For a depth of two, take each of the smaller triangles after the depth 1 subdivision and divide each of those into four smaller triangles. Continue the subdividing until the desired depth is reached. Do not try a depth more than 5 or so, as it will take forever and use excessive memory. The figure below shows a depth of 4.
6. Test 6 – Identical to test 5 but adding rotation as in test 2.
Copying the Project Skeletons
1. Log into deepthought19.cc.gatech.edu.cc using ssh and your prism log-in name.
2. Copy the files from the ECE6122 user account using the following command:
/usr/bin/rsync -avu /nethome/ECE6122/Icosahedron .
Be sure to notice the period at the end of the above command.
3. Change your working directory to Icosahedron
cd Icosahedron
4. Copy the provided icosahedron-skeleton.cc to icosahedron.cc as follows: cp icosahedron-skeleton.cc icosahedron.cc
5. Then edit icosahedron.cc to create your code for the test cases.
Turning in your Project. Turn in your project by using the turnin-ece6122 or turnin-ece4122 script depeneding on your section.




Reviews
There are no reviews yet.