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
nurbstools.h
#pragma once

#include <QWidget>

namespace Ui {
class NURBSTools;
}

class nurbs_plugin;

class NURBSTools : public QWidget
{
    Q_OBJECT
    
public:
    explicit NURBSTools(nurbs_plugin * usePlugin, QWidget *parent = 0);
    ~NURBSTools();
    
    nurbs_plugin * plugin;

	int uCount();
	int vCount();

	double resolution();

	int contractIterations();

	bool isRemesh();
	bool isVoxelize();
	bool isUseMedial();
	bool isProtectSmallFeatures();

	double remeshParamter();
	double voxelParamter();

public slots:
	void selectionChanged();
	void fillList();
	QStringList selectedGroups();

	void convertToCurve();
	void convertToSheet();

	void modifyGraph();

	void flipU();
	void flipV();

private:
    Ui::NURBSTools *ui;
};
back to top