File: lc_arraydialog.h

package info (click to toggle)
leocad 25.09-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,008 kB
  • sloc: cpp: 51,794; xml: 11,265; python: 81; sh: 52; makefile: 16
file content (27 lines) | stat: -rw-r--r-- 331 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#pragma once

#include "lc_math.h"

namespace Ui {
class lcArrayDialog;
}

class lcArrayDialog : public QDialog
{
	Q_OBJECT

public:
	lcArrayDialog(QWidget* Parent);
	~lcArrayDialog();

	int mCounts[3];
	lcVector3 mOffsets[3];
	lcVector3 mRotations[3];

public slots:
	void accept() override;

private:
	Ui::lcArrayDialog *ui;
};