-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdruloader.h
46 lines (32 loc) · 1.16 KB
/
druloader.h
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef DRULOADER_H
#define DRULOADER_H
#include <QString>
class DRULoader
{
public:
DRULoader(const QString druPath = QString(""));
bool load(const QString druPath);
qreal stopMaskPercentage() const;
qreal stopMaskOffsetMinInMm() const;
qreal stopMaskOffsetMaxInMm() const;
qreal elongationPercentageForLongPads() const;
qreal elongationPercentageForOffsetPads() const;
qreal padTopAnnularRingWidthMinMm() const;
qreal padTopAnnularRingWidthMaxMm() const;
qreal padTopAnnularRingPercentage() const;
qreal padBottomAnnularRingWidthMinMm() const;
qreal padBottomAnnularRingWidthMaxMm() const;
qreal padBottomAnnularRingPercentage() const;
private:
QString m_error;
qreal m_stopMaskPercentage;
qreal m_stopMaskOffsetMinInMm;
qreal m_stopMaskOffsetMaxInMm;
qreal m_elongationPercentageForLongPads;
qreal m_elongationPercentageForOffsetPads;
qreal m_padTopAnnularRingWidthMinMm, m_padTopAnnularRingWidthMaxMm;
qreal m_padTopAnnularRingPercentage;
qreal m_padBottomAnnularRingWidthMinMm, m_padBottomAnnularRingWidthMaxMm;
qreal m_padBottomAnnularRingPercentage;
};
#endif // DRULOADER_H