W Randolph Franklin home page
... (old version)
ComputerGraphicsFall2006/ home page Login


Homework 1, due Wed Sep 6 in lab

  1. Find the eigenvalues and eigenvectors of the following matrix. Suggested tools include Matlab, Maple, or doing it by hand.
    .3.4
    -.4.3
  2. Consider these 3-D vectors: A=(1,2,3), B=(5,4,6), C=(7,9,8). Compute:
    1. A.BxC
    2. AxB.C
  3. (This is another a test of your linear algebra knowledge. Feel free to refer to books to find the correct formulae.)
    Suppose that we have a plane in 3-D thru the points A(1,0,1), B(1,1,0), and C(0,0,1).
    1. What is its equation, in the form ax+by+cz+d=0?
    2. Consider the line L thru the points O(0,0,0) and P(1,1,1). Where does this line intersect the plane?
  4. This is a test of whether you know enough C for this course. The following code will copy string s to array t, provided that a few erroneous lines are corrected. What are the corrections and proper initializations?
    char *s="Hello!";
    char t[6];
    char p, q;
    p=s;
    q=t;
    for (;*q++ = *p++;);
    
    
  5. If we're going to be learning complicated graphics in this course, it behooves us still to be able to do the simple things. So, this exercise is to plot the ship NCC1701.

Here is a compressed file of 3,958 triangles defining the USS Enterprise. It looks like the image on the right when uncompressed with gunzip:

 
1.431000 0.505000 0.843000
1.572000 0.505000 0.801000
1.287000 0.505000 0.802000
1.431000 0.505000 0.843000


1.572000 0.505000 0.801000
1.595000 0.542000 0.794000
1.263000 0.542000 0.795000
1.572000 0.505000 0.801000


1.572000 0.505000 0.801000
1.263000 0.542000 0.795000
1.287000 0.505000 0.802000
1.572000 0.505000 0.801000


... and similarly for 23730 more lines

Each line of the file represents one vertex in the form: (x, y, z). Four lines make one triangle; the first vertex is repeated. Two blank lines separate each triangle.

You may want to cut off a piece of the file for testing. This is how to do it in Linux.

 
head -1000 /tmp/ncc > /tmp/piece

Plot the data.





<< Announcements | ComputerGraphicsFall2006 | Homework 2 >>

Recent pages you've visited: (:tracetrails:)