Files
Renderive/Qt/plot/Explicit_Plot.cpp
T
2026-08-10 19:55:29 +08:00

15 lines
261 B
C++

#include "Explicit_Plot.h"
#include "Plot_p.h"
namespace renderive {
Explicit_Plot::Explicit_Plot()
: Abs_Plot(new Abs_Plot_Private(false)) {}
Render_Ticket Explicit_Plot::replot() {
return {d->core->render_frame(true)};
}
} // namespace renderive