Searched defs:sin (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/util/
H A DFloatMath.java56 public static native float sin(float angle); method in class:FloatMath
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DFloatMath.java62 public static float sin(float angle) { method in class:FloatMath
63 return (float)Math.sin(angle);
/frameworks/base/awt/java/awt/geom/
H A DArc2D.java496 double sin; field in class:Arc2D.Iterator
559 k = 4.0 / 3.0 * (1.0 - Math.cos(step / 2.0)) / Math.sin(step / 2.0);
593 sin = Math.sin(angle);
594 kx = k * width * sin;
597 coords[1] = my = y + sin * height;
605 sin = Math.sin(angle);
606 kx = k * width * sin;
609 coords[5] = my = y + sin * heigh
[all...]

Completed in 562 milliseconds