Skip to content

Instantly share code, notes, and snippets.

@native-m
Created September 7, 2018 19:23
Show Gist options
  • Save native-m/19cb51466a449c2a45535aa338af52b8 to your computer and use it in GitHub Desktop.
Save native-m/19cb51466a449c2a45535aa338af52b8 to your computer and use it in GitHub Desktop.
My sin function
double fast_sin(double x)
{
return x *
(x * x * (x * x *
(x * x * (x * x *
(x * x * (x * x *
1.6059043837e-10 - 2.5052108385e-8)
+ 0.0000027557319224) - 0.000198412698413)
+ 0.00833333333333) - 0.166666666667) + (double)1.0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment