2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
6 #include "mathtrans_intern.h"
8 /*****************************************************************************
12 AROS_LH2(float, SPSincos
,
15 AROS_LHA(IPTR
*, pfnum2
, D1
),
16 AROS_LHA(float, fnum1
, D0
),
19 struct Library
*, MathTransBase
, 9, MathTrans
)
22 Calculate the cosine and the sine of the given ffp-number
23 fnum1 that represents an angle in radians. The function
24 returns the sine of that number as a result and puts
25 the cosine of that number into *pfnum2 which must represent
26 a valid pointer to a ffp-number.
31 *pfnum2 - Motorola fast floating point number
32 direct result - Motorola fast floating point number
38 *****************************************************************************/
42 *pfnum2
= SPCos(fnum1
);