Home | History | Annotate | Download | only in replicaisland

Lines Matching defs:denom

713             final float denom = (y4 - y3) * (x2 - x1) - (x4 - x3) * (y2 - y1);
714 if (denom != 0) {
715 final float uA = ((x4 - x3) * (y1 - y3) - (y4 - y3) * (x1 - x3)) / denom;
716 final float uB = ((x2 - x1) * (y1 - y3) - (y2 - y1) * (x1 - x3)) / denom;