mathnode: began math node

This commit is contained in:
itsmattkc
2020-03-28 17:51:35 +11:00
parent b54388894c
commit 938527b9fe
4 changed files with 76 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#include "math.h"
MathNode::MathNode()
{
}
Node *MathNode::copy() const
{
return new MathNode();
}
QString MathNode::Name() const
{
return tr("Math");
}
QString MathNode::id() const
{
return QStringLiteral("org.olivevideoeditor.Olive.math");
}
QString MathNode::Category() const
{
return tr("Math");
}
QString MathNode::Description() const
{
return tr("Perform a mathematical operation between two.");
}