Home | History | Annotate | Download | only in internal

Lines Matching defs:ay

84         // A(ax,ay) is the vector p1->p2.
86 final int ay = mP2Y - mP1Y;
99 final float crossProdAB = ax * by - ay * bx;
100 final float dotProdAB = ax * bx + ay * by;
101 final float normASquare = ax * ax + ay * ay;
104 mSlope1X = invHalfNormASquare * (dotProdAB * ax + crossProdAB * ay);
105 mSlope1Y = invHalfNormASquare * (dotProdAB * ay - crossProdAB * ax);
109 mSlope1Y = ay;
123 final float crossProdAB = ax * by - ay * bx;
124 final float dotProdAB = ax * bx + ay * by;
125 final float normASquare = ax * ax + ay * ay;
128 mSlope2X = invHalfNormASquare * (dotProdAB * ax + crossProdAB * ay);
129 mSlope2Y = invHalfNormASquare * (dotProdAB * ay - crossProdAB * ax);
133 mSlope2Y = ay;