src/dialogs/cylindereditor.cpp

Sun, 10 Jun 2018 17:17:42 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 10 Jun 2018 17:17:42 +0300
changeset 1399
f52ea4078f5d
parent 1395
23551de3da36
permissions
-rw-r--r--

added the disc and disc negative to the circular primitive type

#include "cylindereditor.h"
#include "ui_cylindereditor.h"

CylinderEditor::CylinderEditor(QWidget* parent) :
	QDialog {parent},
	ui {*new Ui_CylinderEditor}
{
	ui.setupUi(this);
}

CylinderEditor::~CylinderEditor()
{
	delete &ui;
}

mercurial