Lines Matching refs:crossProduct
88 const float crossProduct = (u.x() * v.y() - u.y() * v.x());
90 return crossProduct > 0.0f;
116 const float crossProduct = (line.x() * v.y() - line.y() * v.x());
123 if (crossProduct * crossProduct > maxPixelDistanceSquared * tcu::lengthSquared(line))
179 const float crossProduct = (u.x() * v.y() - u.y() * v.x());
181 return crossProduct / 2.0f;
2104 const deInt64 crossProduct = (edge.x() * v.y() - edge.y() * v.x());
2110 if (crossProduct < 0 && crossProduct*crossProduct > maxPixelDistanceSquared * tcu::lengthSquared(edge))
2112 if (crossProduct < 0 || crossProduct*crossProduct < maxPixelDistanceSquared * tcu::lengthSquared(edge))
2180 const deInt64 crossProduct = (edge.x() * v.y() - edge.y() * v.x());
2183 if (crossProduct < 0)