Home | History | Annotate | Download | only in css

Lines Matching refs:xDist

786             float xDist = min(secondPoint.x(), size.width() - secondPoint.x());
789 float smaller = min(xDist, yDist);
790 xDist = smaller;
793 secondRadius = xDist;
794 aspectRatio = xDist / yDist;
798 float xDist = max(secondPoint.x(), size.width() - secondPoint.x());
801 float larger = max(xDist, yDist);
802 xDist = larger;
805 secondRadius = xDist;
806 aspectRatio = xDist / yDist;
817 float xDist = min(secondPoint.x(), size.width() - secondPoint.x());
820 secondRadius = horizontalEllipseRadius(corner - secondPoint, xDist / yDist);
821 aspectRatio = xDist / yDist;
834 float xDist = max(secondPoint.x(), size.width() - secondPoint.x());
837 secondRadius = horizontalEllipseRadius(corner - secondPoint, xDist / yDist);
838 aspectRatio = xDist / yDist;