HomeSort by relevance Sort by last modified time
    Searched full:hypotenuse (Results 1 - 25 of 38) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/encoding/gob/
example_interface_test.go 19 func (p Point) Hypotenuse() float64 {
24 Hypotenuse() float64
48 fmt.Println(result.Hypotenuse())
  /prebuilts/go/linux-x86/src/encoding/gob/
example_interface_test.go 19 func (p Point) Hypotenuse() float64 {
24 Hypotenuse() float64
48 fmt.Println(result.Hypotenuse())
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
name_bar_chart.html 75 // When the text is rotated, its height is the hypotenuse
76 // of a small triangle H, and its width is the hypotenuse of a larger
  /external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/
introduction_to_pca.cpp 24 double hypotenuse; local
26 hypotenuse = sqrt( (double) (p.y - q.y) * (p.y - q.y) + (p.x - q.x) * (p.x - q.x));
31 q.x = (int) (p.x - scale * hypotenuse * cos(angle));
32 q.y = (int) (p.y - scale * hypotenuse * sin(angle));
  /external/opencv3/samples/gpu/
pyrlk_optical_flow.cpp 43 double hypotenuse = sqrt( (double)(p.y - q.y)*(p.y - q.y) + (double)(p.x - q.x)*(p.x - q.x) ); local
45 if (hypotenuse < 1.0)
49 q.x = (int) (p.x - 3 * hypotenuse * cos(angle));
50 q.y = (int) (p.y - 3 * hypotenuse * sin(angle));
  /external/opencv3/samples/tapi/
pyrlk_optical_flow.cpp 48 double hypotenuse = sqrt( (double)(p.y - q.y)*(p.y - q.y) + (double)(p.x - q.x)*(p.x - q.x) ); local
50 if (hypotenuse < 1.0)
54 q.x = (int) (p.x - 3 * hypotenuse * cos(angle));
55 q.y = (int) (p.y - 3 * hypotenuse * sin(angle));
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialSelectorView.java 201 double hypotenuse = Math.sqrt( local
210 int distanceToInnerNumber = (int) Math.abs(hypotenuse - innerNumberRadius);
212 int distanceToOuterNumber = (int) Math.abs(hypotenuse - outerNumberRadius);
226 if (hypotenuse >= minAllowedHypotenuseForInnerNumber &&
227 hypotenuse <= halfwayHypotenusePoint) {
229 } else if (hypotenuse <= maxAllowedHypotenuseForOuterNumber &&
230 hypotenuse >= halfwayHypotenusePoint) {
241 int distanceToNumber = (int) Math.abs(hypotenuse - mLineLength);
253 double radians = Math.asin(opposite / hypotenuse);
  /external/vulkan-validation-layers/libs/glm/gtc/
reciprocal.hpp 54 /// hypotenuse / adjacent or 1 / cos(x)
61 /// hypotenuse / opposite or 1 / sin(x)
  /frameworks/base/core/java/android/transition/
ArcMotion.java 211 // hypotenuse squared.
218 // Distance squared between end point and mid point is (1/2 hypotenuse)^2
227 // ab = hypotenuse
228 // bd = hypotenuse/2
  /frameworks/base/core/java/android/util/
FloatMath.java 127 * @return the hypotenuse
  /external/freetype/src/base/
fttrigon.c 73 /* and CORDIC hypotenuse, so it minimizes the error */
117 /* and CORDIC hypotenuse, so it minimizes the error */
ftcalc.c 922 /* hypotenuse with the `in' and `out' length. The `corner' */
923 /* represented by `in' and `out' is flat if the hypotenuse's */
931 /* hypotenuse */
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
fttrigon.c 73 /* and CORDIC hypotenuse, so it minimizes the error */
117 /* and CORDIC hypotenuse, so it minimizes the error */
ftcalc.c 973 /* hypotenuse with the `in' and `out' length. The `corner' */
974 /* represented by `in' and `out' is flat if the hypotenuse's */
982 /* hypotenuse */
  /external/pdfium/third_party/freetype/src/base/
fttrigon.c 73 /* and CORDIC hypotenuse, so it minimizes the error */
117 /* and CORDIC hypotenuse, so it minimizes the error */
ftcalc.c 973 /* hypotenuse with the `in' and `out' length. The `corner' */
974 /* represented by `in' and `out' is flat if the hypotenuse's */
982 /* hypotenuse */
  /frameworks/base/core/java/com/android/internal/widget/
RotarySelector.java 474 // the hypotenuse
  /frameworks/support/core-ui/java/android/support/v4/widget/
MaterialProgressDrawable.java 516 * @param width Width of the hypotenuse of the arrow head
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
CountingTimerView.java 443 // If the hypotenuse of the bounding box is too large, reduce all the paint text sizes
  /frameworks/rs/api/
rs_math.spec 1174 summary: Hypotenuse
1176 Returns the hypotenuse, i.e. <code>sqrt(a * a + b * b)</code>.
    [all...]
  /external/dng_sdk/source/
dng_lens_correction.cpp 1245 // The proposed tile size is unusually large, i.e., its hypotenuse is larger
    [all...]
  /external/opencv/cxcore/src/
cxsvd.cpp 206 /* accurate hypotenuse calculation */
    [all...]
  /frameworks/rs/scriptc/
rs_math.rsh     [all...]
  /prebuilts/sdk/renderscript/include/
rs_math.rsh     [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
math_fwd.hpp 466 // Hypotenuse function sqrt(x ^ 2 + y ^ 2).
    [all...]

Completed in 1973 milliseconds

1 2