Home | History | Annotate | Download | only in css

Lines Matching refs:aspectRatio

973 // width/height given by aspectRatio.
974 static inline float horizontalEllipseRadius(const FloatSize& p, float aspectRatio)
977 // a/b = aspectRatio, b = a/aspectRatio
979 return sqrtf(p.width() * p.width() + (p.height() * p.height()) / (1 / (aspectRatio * aspectRatio)));
1006 float aspectRatio = 1; // width / height.
1014 aspectRatio = secondRadius / resolveRadius(m_endVerticalSize.get(), renderer->style(), rootStyle, &height);
1016 aspectRatio = 1;
1059 aspectRatio = xDist / yDist;
1071 aspectRatio = xDist / yDist;
1086 aspectRatio = xDist / yDist;
1103 aspectRatio = xDist / yDist;
1110 RefPtr<Gradient> gradient = Gradient::create(firstPoint, firstRadius, secondPoint, secondRadius, aspectRatio);