! Creates a new QCPScatterStyle instance with size set to 6. No shape, pen or brush is defined. Since the pen is undefined (\ref isPenDefined returns false), the scatter color will be inherited from the plottable that uses this scatter style. */
| 9918 | from the plottable that uses this scatter style. |
| 9919 | */ |
| 9920 | QCPScatterStyle::QCPScatterStyle() : |
| 9921 | mSize(6), |
| 9922 | mShape(ssNone), |
| 9923 | mPen(Qt::NoPen), |
| 9924 | mBrush(Qt::NoBrush), |
| 9925 | mPenDefined(false) |
| 9926 | { |
| 9927 | } |
| 9928 | |
| 9929 | /*! |
| 9930 | Creates a new QCPScatterStyle instance with shape set to \a shape and size to \a size. No pen or |
nothing calls this directly
no outgoing calls
no test coverage detected