Files
oak-editor/app/node/math/math.cpp
T
2020-03-28 17:51:35 +11:00

32 lines
421 B
C++

#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.");
}