|
33 | 33 | Python and then to optimize some parts of the code by writing new modules |
34 | 34 | based on NumPy and other libraries. |
35 | 35 |
|
36 | | -
|
37 | 36 | The ``PythonQwt`` package consists of a single Python package named `qwt` |
38 | | -which is a pure Python implementation of Qwt C++ library with the following |
39 | | -limitations. |
40 | | -
|
41 | | -The following `Qwt` classes won't be reimplemented in `qwt` because more |
42 | | -powerful features already exist in `guiqwt`: `QwtPlotZoomer`, `QwtCounter`, |
43 | | -`QwtEventPattern`, `QwtPicker`, `QwtPlotPicker`. |
44 | | -
|
45 | | -Only the following plot items are currently implemented in `qwt` (the only |
46 | | -plot items needed by `guiqwt`): `QwtPlotItem` (base class), `QwtPlotItem`, |
47 | | -`QwtPlotMarker`, `QwtPlotSeriesItem`, `QwtPlotHistogram`, `QwtPlotCurve`. |
48 | | -
|
49 | | -The `QwtClipper` class is not implemented yet (and it will probably be |
50 | | -very difficult or even impossible to implement it in pure Python without |
51 | | -performance issues). As a consequence, when zooming in a plot curve, the |
52 | | -entire curve is still painted (in other words, when working with large |
53 | | -amount of data, there is no performance gain when zooming in).""" |
| 37 | +which is a pure Python implementation of Qwt C++ library with some |
| 38 | +limitations: efforts were concentrated on basic plotting features, leaving |
| 39 | +higher level features to the `guiqwt` library.""" |
54 | 40 | KEYWORDS = '' |
55 | 41 | CLASSIFIERS = [] |
56 | 42 | if 'beta' in version or 'b' in version: |
|
0 commit comments