Home | History | Annotate | Download | only in css

Lines Matching refs:firstPoint

475 static void endPointsFromAngle(float angleDeg, const IntSize& size, FloatPoint& firstPoint, FloatPoint& secondPoint)
482 firstPoint.set(0, 0);
488 firstPoint.set(0, size.height());
494 firstPoint.set(size.width(), 0);
526 firstPoint.set(size.width() - secondPoint.x(), size.height() - secondPoint.y());
535 FloatPoint firstPoint;
539 endPointsFromAngle(angle, size, firstPoint, secondPoint);
541 firstPoint = computeEndPoint(m_firstX.get(), m_firstY.get(), renderer->style(), rootStyle, size);
547 secondPoint.setX(size.width() - firstPoint.x());
549 secondPoint.setY(size.height() - firstPoint.y());
553 RefPtr<Gradient> gradient = Gradient::create(firstPoint, secondPoint);
728 FloatPoint firstPoint = computeEndPoint(m_firstX.get(), m_firstY.get(), renderer->style(), rootStyle, size);
730 firstPoint.setX(size.width() / 2);
732 firstPoint.setY(size.height() / 2);
845 RefPtr<Gradient> gradient = Gradient::create(firstPoint, firstRadius, secondPoint, secondRadius, aspectRatio);