src/widgets/colorinput.cpp@34c6e7bc4ee1
src/widgets/colorinput.cpp
Sun, 12 Jun 2022 23:59:37 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Sun, 12 Jun 2022 23:59:37 +0300
- changeset 215
- 34c6e7bc4ee1
- parent 96
-
165777a20dc7
- permissions
- -rw-r--r--
Reimplement the axes program as a layer that can be added to PartRenderer
#include "colorinput.h"
#include "ui_colorinput.h"
ColorInput::ColorInput(QWidget *parent) :
QWidget(parent),
ui(new Ui::ColorInput)
{
ui->setupUi(this);
}
ColorInput::~ColorInput()
{
delete ui;
}