Here you can find the source of atan_66s(double x)
private static double atan_66s(double x)
//package com.java2s; public class Main { static final double c1 = 1.6867629106; static final double c2 = 0.4378497304; static final double c3 = 1.6867633134; private static double atan_66s(double x) { double x2 = x * x; return (x * (c1 + x2 * c2) / (c3 + x2)); }/*from w ww. ja v a2 s . co m*/ }