https://github.com/ialhashim/topo-blend
Revision 39b13612ebd645a65eda854771b517371f2f858a authored by ennetws on 13 March 2015, 18:17:18 UTC, committed by ennetws on 13 March 2015, 18:17:18 UTC
1 parent c702819
Raw File
Tip revision: 39b13612ebd645a65eda854771b517371f2f858a authored by ennetws on 13 March 2015, 18:17:18 UTC
Create README.md
Tip revision: 39b1361
geometry_morph_widget.cpp
#include "geometry_morph.h"
#include "geometry_morph_widget.h"
#include "ui_geometry_morph_widget.h"
#include <QFileDialog>

QString cur_filename;

geometry_morph_widget::geometry_morph_widget(geometry_morph * geo_morph, QWidget *parent) : QWidget(parent), ui(new Ui::geometry_morph_widget)
{
	ui->setupUi(this);

	this->gm = geo_morph;

	geo_morph->connect(ui->button1, SIGNAL(clicked()), SLOT(loadSourceModel()));
	geo_morph->connect(ui->button2, SIGNAL(clicked()), SLOT(loadTargetModel()));

	geo_morph->connect(ui->button3, SIGNAL(clicked()), SLOT(loadSourceGraph()));
	geo_morph->connect(ui->button4, SIGNAL(clicked()), SLOT(loadTargetGraph()));
	geo_morph->connect(ui->button5, SIGNAL(clicked()), SLOT(doMorph()));



}

geometry_morph_widget::~geometry_morph_widget()
{
	delete ui;
}

void geometry_morph_widget::renderViewer()
{

}

void geometry_morph_widget::renderAnimation()
{

}

void geometry_morph_widget::loadAnimationModel()
{

}
back to top