Final-year Geometric Modelling Course

1995 Exam


1

Answers to each part of this question should be brief: a sentence or two, or a quick sketch. (1 mark for each part)

  1. Show how a wire-frame `model' can be ambiguous.

  2. Why is a simple list of polygonal faces not very good as a geometric model of an object with flat faces?

  3. What is the haloing method of depth cueing?

  4. How may a boundary-representation (B-rep) solid model be topologically `solid', but geometrically incorrect?

  5. What is the difference between a boundary-representation model and a set-theoretic (that is a CSG) model?

  6. Why are curved shapes slightly problematical for B-rep modellers?

  7. What sort of engineering components would a Duct-type modeller be good at modelling?

  8. Why is it hard to compute the volume of a B-rep model, but easy to compute its surface area?

  9. Why is it easy to compute the volume of a set-theoretic model, but hard to compute its surface area?

  10. What is the difference between a B-spline and a NURBS?

  11. Why is it hard to model rounded corners of objects with bi-parametric patches?

  12. What is the convex-hull property of a Bernstein-basis surface?

  13. How does that convex-hull property relate to the fact that the Bernstein basis functions add up to 1?

  14. What is ray tracing?

  15. What is the face adjacency graph feature recognition technique?

  16. A salesperson says to you, ` SPACE-3 is a highly-efficient all-NURBS geometric modeller.' Why might you think twice before buying it for your company?

  17. How can a membership test be done in a B-rep modeller?

  18. What is the difference between a modeller primitive that is localized and one that is not?

  19. A ball-nosed cutter (a cylindrical cutter with a hemispherical end) moves in a straight horizontal line in a vertical-axis milling machine. What shape would it sweep out?

  20. Give two problems that may arise when bi-parametric patches are used to model real engineering components.

2

Figure Q2 (you should have two copies: one for rough work, one for neat; hand both in) shows a design for the supports of a semi-cylindrical cover for a walkway outside a new building. All the corners of the shape are deliberately placed at coordinate values that are odd multiples of 0.5 [thus the sharp corner formed by the two arcs is at , for example].

  1. Write down seven implicit half-space inequalities that define the numbered primitives of the support, and hatch a little bit of shading on the figure to indicate the solid side of each. Try to do this without otherwise drawing on the figure---you're going to need to draw something else on it in a moment. (5 marks)

  2. Write down a set-theoretic expression using your numbered inequalities that defines the support (that is an expression like ). You may need extra inequalities and also to use the complements of some in order to chop chunks off at the right places. (5 marks)

  3. Draw on the figure a recursive division of the square into rectangular regions (each rectangle being half the area of its parent) such that each leaf rectangle contains at most two of the original seven primitives. (5 marks)

  4. The point is inside the area of the support. Prove this using a simple set-theoretic expression that only describes the support inside your leaf rectangle containing that point. (5 marks)

Don't forget to write your candidate number on both Figure Q2s and to hand them in with your script...

3

Several quadratic parametric Bézier curves in the plane are to be used to define a cross-section of an aerofoil.

One such curve has a control track consisting of three points, , and . Draw a diagram showing De Casteljau's construction of the curve, and from it derive the equation of the curve with a parameter t that is 0 at one end and 1 at the other. (10 marks)

Show that the functions of the parameter, t, that multiply each point on the control track (that is, the weight applied to each control-track point) can be derived from the expansion of (which, of course, equals 1). (5 marks)

How would you ensure that two such curves joined end-to-end did so smoothly (that is to say, had a common tangent at their join)? (2 marks)

In order to compute the lift and drag of the aerofoil it is necessary (among other things) to be able to find the gradient of the curves at any point along them. Given a value of t along one curve, how would you find a normal vector to the curve at that point? (3 marks)

4

A geometric model can be complicated in two different ways: it can have a large number of projections, holes, and so on compared with a simple model, or it can have few of these but they can have complicated curving surfaces (that is, surfaces of high degree) as opposed to low-degree ones. Both types of complexity may occur together in some models, of course.

Write a description of the kinds of problems these two types of complexity cause both B-rep and set-theoretic geometric modelling programs (5 marks), and describe the ways in which such programs may overcome them (15 marks).

5

A flat plane in space is represented by the implicit equation a x + b y + c z + d = 0; it forms part of the surface of a geometric model. A picture of the model is to be rendered on a computer using a ray-tracing program. A straight ray in space is represented by the parametric equation . Derive the equation which gives the value of t where the ray cuts the plane. (6 marks)

Using FORTRAN or any other computer language write a subroutine RAYT to compute the t value, T, where the ray hits the plane. The subroutine should also return an INTEGER value HIT which is 0 if the ray misses completely (that is, if it is parallel to the plane) or 1 if it strikes the plane. If you choose to use FORTRAN your subroutine should start like this:

      SUBROUTINE RAYT(A,B,C,D,E,G,T,HIT)
      REAL A,B,C,D,E(3),G(3),T
      INTEGER HIT

where A, B, C, and D are the plane's coefficients, E the three coordinate values of the start of the ray, and G the three corresponding gradient values for the ray. You may need to declare other variables to hold the results of intermediate calculations. (12 marks)

Given T, how would you find the coordinates in space where the ray struck the plane? (2 marks)


Back to: Final-year Geometric Modelling Course Exams

© Adrian Bowyer 1996