template struct ImPlot::RendererCircleFill

Overview

template <class _Getter, class _GetterColor>
struct RendererCircleFill: public ImPlot::RendererBase
{
    // fields

    const _Getter& Getter;
    const _GetterColor& GetterColor;
    ImVec2 UV;

    // construction

    RendererCircleFill(
        const _Getter& getter,
        const _GetterColor& getter_color
        );

    // methods

    void Init(ImDrawList& draw_list) const;

    IMPLOT_INLINE bool Render(
        ImDrawList& draw_list,
        const ImRect& cull_rect,
        int prim
        ) const;
};