HomeSort by relevance Sort by last modified time
    Searched refs:triangleArea (Results 1 - 4 of 4) sorted by null

  /external/opencv3/modules/imgproc/src/
subdivision2d.cpp 213 static double triangleArea( Point2f a, Point2f b, Point2f c )
223 double cw_area = triangleArea( pt, dst, org );
377 fabs( triangleArea( pt, org_pt, dst_pt )) < FLT_EPSILON )
401 double val = ((double)a.x * a.x + (double)a.y * a.y) * triangleArea( b, c, pt );
402 val -= ((double)b.x * b.x + (double)b.y * b.y) * triangleArea( a, c, pt );
403 val += ((double)c.x * c.x + (double)c.y * c.y) * triangleArea( a, b, pt );
404 val -= ((double)pt.x * pt.x + (double)pt.y * pt.y) * triangleArea( a, b, c );
min_enclosing_triangle.cpp     [all...]
  /external/deqp/modules/glshared/
glsLongStressCase.cpp 140 static inline float triangleArea (const Vec2& a, const Vec2& b, const Vec2& c)
    [all...]
glsRasterizationTestUtil.cpp 175 float triangleArea (const tcu::Vec2& s0, const tcu::Vec2& s1, const tcu::Vec2& s2)
354 const float ka = triangleArea(ndpixel, nd1, nd2);
355 const float kb = triangleArea(ndpixel, nd2, nd0);
356 const float kc = triangleArea(ndpixel, nd0, nd1);
    [all...]

Completed in 193 milliseconds