Home | History | Annotate | Download | only in css

Lines Matching defs:aspectRatio

998 // width/height given by aspectRatio.
999 static inline float horizontalEllipseRadius(const FloatSize& p, float aspectRatio)
1002 // a/b = aspectRatio, b = a/aspectRatio
1004 return sqrtf(p.width() * p.width() + (p.height() * p.height()) / (1 / (aspectRatio * aspectRatio)));
1029 float aspectRatio = 1; // width / height.
1037 aspectRatio = secondRadius / resolveRadius(m_endVerticalSize.get(), conversionData, &height);
1039 aspectRatio = 1;
1082 aspectRatio = xDist / yDist;
1094 aspectRatio = xDist / yDist;
1109 aspectRatio = xDist / yDist;
1126 aspectRatio = xDist / yDist;
1133 RefPtr<Gradient> gradient = Gradient::create(firstPoint, firstRadius, secondPoint, secondRadius, aspectRatio);