QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RPatternLine.h
Go to the documentation of this file.
1 #ifndef RPATTERNLINE_H
2 #define RPATTERNLINE_H
3 
4 #include "RLine.h"
5 #include "RPainterPath.h"
6 #include "RVector.h"
7 
8 
16 class RPatternLine {
17 public:
18  double angle;
21  QList<double> dashes;
22 
24  QList<RLine> getLines() const;
25  double getLength() const;
26  void scale(double f);
27  void rotate(double a);
28 };
29 
30 QDebug operator<<(QDebug dbg, const RPatternLine& p);
31 
34 
35 #endif