valentina/options.h

21 lines
304 B
C
Raw Normal View History

2013-07-03 14:29:26 +02:00
#ifndef OPTIONS_H
#define OPTIONS_H
#define PrintDPI 96
#define PaperSize 50000
2013-07-28 00:18:06 +02:00
#define widthMainLine 0.8*PrintDPI/25.4
#define widthHairLine widthMainLine/3
2013-07-03 14:29:26 +02:00
2013-07-25 14:00:51 +02:00
namespace Scene{
enum Type
{
Point,
Line,
Spline,
2013-08-09 08:49:34 +02:00
Arc,
SplinePath
2013-07-25 14:00:51 +02:00
};
}
2013-07-03 14:29:26 +02:00
#endif // OPTIONS_H