|
1. REQUIREMENTSProduce a Java class that will return the sine, cosine and tangent of a given angle between 0.0 and 90.0 degrees (Figure 1). |
![]() Figure 1: Sine, cosine and tangent trigonometric identities |
2. ANALYSIS AND DESIGNThe design comprises a single class, TrigIdentitiesApp; all other methods used are contained in existing classes that come with the Java API. 2.1 TrigIdentitiesApp Class
3. IMPLEMENTATION
Table 1: Trigonometric identities program Note that the implementation given in Table 1 uses the constant, DEG_2_RAD, to convert input in degrees to radians. 4. TESTING
An alternative implementation is given in Table 2 where the toRadians class methhod from the Math is used.
Table 2: Alternative trigonometric identities program Created and maintained by Frans Coenen. Last updated 17 September 2005 |