HomeSort by relevance Sort by last modified time
    Searched defs:sinVal (Results 1 - 2 of 2) sorted by null

  /device/google/contexthub/firmware/external/arm/
arm_sin_cos_f32.c 212 float32_t sinVal, fract, in; /* Temporary variables for input, output */
246 sinVal = (1.0f-fract)*a + fract*b;
249 return (sinVal);
  /external/opencv3/modules/imgproc/src/
generalized_hough.cpp 871 const double sinVal = sin(toRad(angle));
894 templF.r1 = Point2d(cosVal * templF.r1.x - sinVal * templF.r1.y, sinVal * templF.r1.x + cosVal * templF.r1.y);
895 templF.r2 = Point2d(cosVal * templF.r2.x - sinVal * templF.r2.y, sinVal * templF.r2.x + cosVal * templF.r2.y);

Completed in 2790 milliseconds