| 113 | } |
| 114 | |
| 115 | void Plotter::setUseDataCompression(Plotter::CompressionMode value) |
| 116 | { |
| 117 | if (useDataCompression() != value) { |
| 118 | d->implementor->setUseCompression(value); |
| 119 | if (useDataCompression() != Plotter::NONE) { |
| 120 | d->compressor.setModel(nullptr); |
| 121 | if (attributesModel() != d->plotterCompressor.model()) |
| 122 | d->plotterCompressor.setModel(attributesModel()); |
| 123 | } |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | qreal Plotter::maxSlopeChange() const |
| 128 | { |
nothing calls this directly
no test coverage detected