Generate a menu for all of the above keyboard


Homework 1: Done and working good

Programming problem: Interactive Natural Cubic Spline

In mathematics, a spline is a numeric function that is piecewise-defined by polynomial functions, and which possesses a high degree of smoothness at the places where the polynomial pieces connect (which are known as knots).

Cubic splines are the most popular spline functions. They are smooth functions with which to fit data, and when used for interpolation, they do not have the oscillatory behavior that is characteristic of high-degree polynomial interpolation.

703_Cubic Splines.png

The idea behind computing a cubic spline is as follows:

• Let s(x) = a(i) + b(i)*x + c(i)*x^2 + d(i)*x*3 for x(i-1)<= x <= x(i), i = 1,..,n

• This gives 4*n unknown coefficients. So, we need 4*n constraints to solve the problem.

• First we require (i) s(x(i)) = y(i) for i = 0,1,...,n

• Next we require (ii) s(x(i)+0) = s(x(i)-0); (iii) s'(x(i)+0) = s'(x(i)-0); (iv) s''(x(i)+0) = s''(x(i)-0) for i = 1,...,n-1

• This gives us n+1 constraints from (i) and 3(n-1) constraints from (ii)-(iv). Thus, we have 4n-2 constraints leaving 2 degrees of freedom for choosing the coefficients.

Detail algorithm and pseudo code can be found on https://blog.ivank.net/interpolation-with-cubic-splines.html .

Your programming tasks include:

1. Interactively define the initial control spline, i.e. end-users will use the mouse to click points on the screen to define the vertices of the cubic spline, and the program should draw the current natural cubic spline every time a vertex is defined. You are also required to use the motion callback function to generate "picking-and-moving" of control vertices

2. Receiving a character from keyboard as a keyboard event. The character invokes the following actions :

a. ‘q' or ‘Q': exit the program

b. ‘+' or ‘-': increase or decrease the interpolation steps between control points

3. Generate a menu for all of the above keyboard functionalities

4.

a. Keyboard event ‘d' and mouse-picking to delete an existing control vertex

b. Keyboard ‘ ' (space bar) to close the spline as a closed natural cubic spline

Homework 2: not complete and don't works well

The programming problem is based on Homework #1. Our goal is now to extend the 2-dimensional spline into full 3-dimensional space, with user interface elements to rotate and scale the 3D graphic scene. Other tasks include using cylinders to replace the original 2D line segments, with colors and materials.

Your programming tasks include:

1. Extend the original cubic spline algorithms into 3D. Your mouse will be able to pick and move the control points, moving in x-y plane with mouse pointer, and moving in z-direction with the support of a modifier key.

2. Implement a "rolling-ball" interface to rotate the scene in 3D with mouse. Implement a "zoom-in/out" interface with mouse motion and a modifier key.

3. Replacing the line segment with cylinders, adding appropriate colors and materials.

4. When the rolling ball interface receives mouse event with momentum, the rotation will be kept until another mouse click happens.

Homework 3: I need help to achieve that

The programming problem is based on Homework #2. Our goal is now to apply force-directed relaxation algorithm to refine the curve topology.

Two forces are used, an attractive "mechanical" force ( ) applied between adjacent beads on the same component and a repulsive "electrical" force ( ) applied between all other pairs of beads.

Your programming tasks include:

1. Implement the force model so that your sketched curves can be relaxed automatically to a refined shape.

2. Adding collision avoidance mechanism: during each iteration of shape refinement, check to determine if moving the bead to its desired location will cause the knot to move into an unsafe position. If so, bring the unsafe components apart to avoid collisions.

3. Adding a shadow to the 3D scene.

4. Implement view finding function, so that after each relaxation is done the system will rotate the curves into a position that users see the fewest intersections.

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: Generate a menu for all of the above keyboard
Reference No:- TGS01154549

Now Priced at $60 (50% Discount)

Recommended (97%)

Rated (4.9/5)

A

Anonymous user

5/13/2016 1:18:42 AM

Please consider the programming problem and as per the requisite perform the following tasks. The task mainly focuses on Programming problem: Interactive Natural Cubic Spline. The programming tasks comprise: 1) Expand the original cubic spline algorithms into 3D. The mouse will be capable to pick and move the control points, moving in the x-y plane by means of mouse pointer and moving in z-direction by means of the support of a modifier key. 2) Apply a ‘rolling-ball’ interface to rotate the scene in 3-D by mouse. Apply a ‘zoom-in/out’ interface with the mouse motion and a modifier key. 3) Substituting the line segment with cylinders, adding suitable colors and materials. 4) If the rolling ball interface acquires mouse event with momentum, the rotation will be kept until the other mouse click occurs.