00001 /* 00002 $Id: trigonometry.h 2325 2002-09-25 22:28:52Z leighsmith $ 00003 Defined In: The MusicKit 00004 00005 Description: 00006 Simple trigonometric functions using a sine table of size 1024 00007 with linear interpolation. 00008 00009 Original Author: Leigh Smith 00010 00011 Copyright (c) 1999-2002 The MusicKit Project. 00012 */ 00013 00014 double MKSine(double x); 00015 double MKCosine(double x); 00016