blob: 1a97ba879523980c2c590f1f036aee1cd5f72907 [file]
#include "shapes/paint/radial_gradient.hpp"
#include "renderer.hpp"
using namespace rive;
void RadialGradient::makeGradient(const Vec2D& start, const Vec2D& end)
{
renderPaint()->radialGradient(start[0], start[1], end[0], end[1]);
}