Lines Matching defs:area
355 * Compute triangle's area. Use 1/area to compute partial
358 * The area will be the same as prim->det, but the sign may be
365 const float area = (setup->emaj.dx * setup->ebot.dy -
368 setup->oneoverarea = 1.0f / area;
371 debug_printf("%s one-over-area %f area %f det %f\n",
372 __FUNCTION__, setup->oneoverarea, area, det );
888 float area;
904 /* NOTE: this is not really area but something proportional to it */
905 area = setup->emaj.dx * setup->emaj.dx + setup->emaj.dy * setup->emaj.dy;
906 if (area == 0.0f || util_is_inf_or_nan(area))
908 setup->oneoverarea = 1.0f / area;