- Note
- This Source File belongs to Views Example Example. Please follow the link for example explanation.
#include "DemoGraphView.h"
#include <AUI/ASS/ASS.h>
constexpr auto POINT_COUNT = 100.f;
DemoGraphView::DemoGraphView()
{
setFixedSize({ 5_dp * POINT_COUNT, 100_dp });
mPoints.reserve(POINT_COUNT);
for (std::size_t i = 0; i < POINT_COUNT; ++i) {
mPoints << glm::vec2{ 5_dp * float(i), 100_dp * ((glm::sin(i / 10.f) + 1.f) / 2.f) };
}
}
}
virtual void render(ARenderContext ctx)
Draws this AView. Noone should call this function except rendering routine.
virtual void lines(const ABrush &brush, AArrayView< glm::vec2 > points, const ABorderStyle &style, AMetric width)=0
Draws polyline (non-loop line strip).
Displays a series of short square-ended dashes or line segments.
Definition ABorderStyle.h:35
Render context passed to AView::render.
Definition ARenderContext.h:43