This is a Visual Basic program that can plot the path of a projectile, a basic concept towards the launching of a missile. This path is determined by the launching angle and speed. The formula is y=(Vsin a) t- 1/2(gt2) and x=(Vcosa)t, where V=launching speed and a is the launching angle, g is acceleration due to gravity(9.8n ms-2) while t is time.
In this program, I use a picture box for drawing the curve . The command Pset is used to plot the curve.
The Interface

| The Code
Private Sub cmd_Draw_Click()
|
|