Wed, 17 Feb 2021 16:49:35 +0200
stuff
#include "drawtool.h" DrawTool::DrawTool(QObject* parent) : BaseTool{parent} {} QString DrawTool::name() const { static const QString result = tr("Draw"); return result; } QString DrawTool::toolTip() const { static const QString result = tr("Draw new elements into the model."); return result; } void DrawTool::pointInCanvasClicked(const glm::vec3& point) { }