mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
30 lines
419 B
C++
30 lines
419 B
C++
#ifndef _LC_QARRAYDIALOG_H_
|
|
#define _LC_QARRAYDIALOG_H_
|
|
|
|
#include <QDialog>
|
|
#include "lc_math.h"
|
|
|
|
namespace Ui {
|
|
class lcQArrayDialog;
|
|
}
|
|
|
|
class lcQArrayDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
lcQArrayDialog(QWidget* Parent);
|
|
~lcQArrayDialog();
|
|
|
|
int mCounts[3];
|
|
lcVector3 mOffsets[3];
|
|
lcVector3 mRotations[3];
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private:
|
|
Ui::lcQArrayDialog *ui;
|
|
};
|
|
|
|
#endif // _LC_QARRAYDIALOG_H_
|