diff options
| -rw-r--r-- | 3431709-assignment-5.pdf | bin | 141943 -> 143927 bytes | |||
| -rw-r--r-- | assignments/5-solution.md | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/3431709-assignment-5.pdf b/3431709-assignment-5.pdf Binary files differindex cf0b6d8..6d60b77 100644 --- a/3431709-assignment-5.pdf +++ b/3431709-assignment-5.pdf diff --git a/assignments/5-solution.md b/assignments/5-solution.md index 09dd9a6..d1822bd 100644 --- a/assignments/5-solution.md +++ b/assignments/5-solution.md @@ -92,3 +92,16 @@ N3 will fire when the following events occurr: * -: is Off Chapter 16: Computer Graphics and Entertainment: Movies, Games and Virtual Communities + +> Given the following triangular model of a two-dimensional object: +> show what a vertex list representation of this model would look like. +> Because you are working in two dimensions rather than three, your vertex list +> will only have (x, y) coordinates rather than (x, y, z). Assume vertex v1 is +> the origin + +| Origin | Vertex | X | Y | Connected to | +| ------ | ------ | - | - | ------------ | +| X | V1 | 0 | 0 | V2, V4, V5 | +| | V2 | 0.4 | 1.8 | V1, V3, V5 | +| | V3 | 2.2 | 1.9 | V2, V4, V5 | +| | V4 | 2.6 | 0.4 | V1, V3, V5 | |
