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.h
#ifndef GEOMETRY_MORPH_WIDGET_H
#define GEOMETRY_MORPH_WIDGET_H

#include <QWidget>

class geometry_morph;

namespace Ui {
	class geometry_morph_widget;
}

class geometry_morph_widget : public QWidget
{
	Q_OBJECT

public:
    explicit geometry_morph_widget(geometry_morph* geo_morph, QWidget *parent = 0);
	~geometry_morph_widget();

	public slots:
		void renderViewer();
		void renderAnimation();
		void loadAnimationModel();

private:
	Ui::geometry_morph_widget *ui;
	geometry_morph * gm;

};

#endif // GEOMETRY_MORPH_WIDGET_H
back to top