Files
Renderive/Qt/plot/Explicit_Plot.cpp
T
2026-08-16 17:53:46 +08:00

15 lines
289 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->scene->render_frame(true) == Plot_Render_Error::none};
}
} // namespace renderive