├── .coveragerc ├── .env.template ├── .github └── workflows │ ├── build.yml │ ├── build_deploy.yml │ └── test_pyqt5.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yaml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── MANIFEST.in ├── README.md ├── babel.cfg ├── colormaps ├── README.md ├── _cm.py ├── colormap.py └── matplotlib_cmaps.py ├── doc ├── _static │ └── favicon.ico ├── conf.py ├── dev │ ├── build.rst │ ├── contribute.rst │ ├── guiqwt_to_plotpy.csv │ ├── guiqwt_to_plotpy.rst │ ├── index.rst │ ├── platforms.rst │ ├── v1_to_guidata_v3.csv │ ├── v1_to_v2.csv │ └── v1_to_v2.rst ├── features │ ├── colormapmanager.rst │ ├── events.rst │ ├── fit.rst │ ├── fliprotate.rst │ ├── imagefile.rst │ ├── index.rst │ ├── io.rst │ ├── items │ │ ├── builder.rst │ │ ├── examples.rst │ │ ├── index.rst │ │ ├── overview.rst │ │ └── reference.rst │ ├── mathutils │ │ ├── colormaps.rst │ │ ├── geometry.rst │ │ ├── index.rst │ │ └── scaler.rst │ ├── panels │ │ ├── index.rst │ │ ├── overview.rst │ │ └── reference.rst │ ├── plot │ │ ├── examples.rst │ │ ├── index.rst │ │ ├── overview.rst │ │ └── reference.rst │ ├── pyplot.rst │ ├── resizedialog.rst │ ├── rotatecrop.rst │ ├── selectdialog.rst │ ├── signals.rst │ ├── styles │ │ ├── index.rst │ │ ├── overview.rst │ │ └── reference.rst │ └── tools │ │ ├── examples.rst │ │ ├── index.rst │ │ ├── overview.rst │ │ └── reference.rst ├── images │ ├── my_plot_manager.png │ ├── my_plot_manager.svg │ ├── panorama-vertical.png │ ├── panorama-vertical.svg │ ├── panorama.png │ ├── panorama.svg │ ├── plot_widgets.png │ ├── plot_widgets.svg │ ├── plotpy-banner.png │ ├── plotpy-vertical.png │ └── screenshots │ │ ├── __init__.png │ │ ├── computations.png │ │ ├── contrast.png │ │ ├── cross_section.png │ │ ├── cross_section2.png │ │ ├── dotarraydemo.png │ │ ├── filtertest1.png │ │ ├── filtertest2.png │ │ ├── fit.png │ │ ├── get_point.png │ │ ├── hist2d.png │ │ ├── image_plot_tools.png │ │ ├── imagefilter.png │ │ ├── imagesuperp.png │ │ ├── imagexy.png │ │ ├── manager.png │ │ ├── mandelbrot.png │ │ ├── pcolor.png │ │ ├── plot.png │ │ ├── simple_dialog.png │ │ ├── simple_window.png │ │ └── transform.png ├── index.rst ├── intro │ ├── examples.rst │ ├── index.rst │ ├── installation.rst │ ├── licenses.rst │ ├── motivation.rst │ └── overview.rst ├── release_notes │ ├── index.rst │ ├── release_2.00.md │ ├── release_2.01.md │ ├── release_2.02.md │ ├── release_2.03.md │ ├── release_2.04.md │ ├── release_2.05.md │ ├── release_2.06.md │ ├── release_2.07.md │ └── release_2.08.md └── requirements.rst ├── media ├── LinkedIn │ └── 2023_10_31-V2.md └── X │ └── 2023_10_31-V2.txt ├── plotpy-tests.desktop ├── plotpy ├── __init__.py ├── builder │ ├── __init__.py │ ├── annotation.py │ ├── curvemarker.py │ ├── image.py │ ├── label.py │ ├── plot.py │ └── shape.py ├── config.py ├── constants.py ├── coords.py ├── data │ ├── colormaps_default.json │ └── icons │ │ ├── apply.png │ │ ├── arredit.png │ │ ├── arrow_down.png │ │ ├── arrow_up.png │ │ ├── autorefresh.png │ │ ├── autoscale.png │ │ ├── axes.png │ │ ├── busy.png │ │ ├── cell_edit.png │ │ ├── center.png │ │ ├── cmap_edit.png │ │ ├── contrast.png │ │ ├── copy.png │ │ ├── copytoclipboard.png │ │ ├── csapplylut.png │ │ ├── csautoscale.png │ │ ├── csection.png │ │ ├── csection_a.png │ │ ├── csection_line.png │ │ ├── csection_oblique.png │ │ ├── csperimage.png │ │ ├── curve_downsample.png │ │ ├── curvestyles │ │ ├── dots.png │ │ ├── lines.png │ │ ├── steps.png │ │ └── sticks.png │ │ ├── curvetypes │ │ ├── xfy.png │ │ └── yfx.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── edit_point_selection.png │ │ ├── editors │ │ ├── edit.png │ │ ├── edit_add.png │ │ ├── editcopy.png │ │ ├── editdelete.png │ │ ├── editpaste.png │ │ ├── fileimport.png │ │ ├── filesave.png │ │ ├── imshow.png │ │ ├── insert.png │ │ ├── plot.png │ │ └── rename.png │ │ ├── eliminate_outliers.png │ │ ├── eraser.png │ │ ├── exit.png │ │ ├── expander_down.png │ │ ├── expander_right.png │ │ ├── export.png │ │ ├── file.png │ │ ├── fileclose.png │ │ ├── fileimport.png │ │ ├── filenew.png │ │ ├── fileopen.png │ │ ├── filesave.png │ │ ├── filesaveas.png │ │ ├── filetypes │ │ ├── doc.png │ │ ├── gif.png │ │ ├── html.png │ │ ├── jpg.png │ │ ├── pdf.png │ │ ├── png.png │ │ ├── pps.png │ │ ├── ps.png │ │ ├── tar.png │ │ ├── tgz.png │ │ ├── tif.png │ │ ├── txt.png │ │ ├── xls.png │ │ └── zip.png │ │ ├── font.png │ │ ├── full_range.png │ │ ├── funct.png │ │ ├── hcursor.png │ │ ├── hflip.png │ │ ├── imagestats.png │ │ ├── item_list.png │ │ ├── items │ │ ├── annotation.png │ │ ├── curve.png │ │ ├── errorbar.png │ │ ├── grid.png │ │ ├── histogram.png │ │ ├── histogram2d.png │ │ ├── image.png │ │ ├── label.png │ │ ├── legend.png │ │ └── polygonmap.png │ │ ├── magnifier.png │ │ ├── markers │ │ ├── cross.png │ │ ├── diamond.png │ │ ├── ellipse.png │ │ ├── hexagon.png │ │ ├── point.png │ │ ├── square.png │ │ ├── star.png │ │ ├── triangle_d.png │ │ ├── triangle_l.png │ │ ├── triangle_r.png │ │ ├── triangle_u.png │ │ └── xcross.png │ │ ├── markerstyles │ │ ├── cross_marker.png │ │ ├── horiz_marker.png │ │ └── vert_marker.png │ │ ├── mask │ │ ├── mask_circle.png │ │ ├── mask_circle_outside.png │ │ ├── mask_rectangle.png │ │ ├── mask_rectangle_outside.png │ │ └── mask_tool.png │ │ ├── max.png │ │ ├── min.png │ │ ├── move.png │ │ ├── multipoint_selection.png │ │ ├── none.png │ │ ├── not_found.png │ │ ├── on_curve.png │ │ ├── patterns │ │ ├── bdiagpattern.png │ │ ├── crosspattern.png │ │ ├── dense1pattern.png │ │ ├── dense2pattern.png │ │ ├── dense3pattern.png │ │ ├── dense4pattern.png │ │ ├── dense5pattern.png │ │ ├── dense6pattern.png │ │ ├── dense7pattern.png │ │ ├── diagcrosspattern.png │ │ ├── fdiagpattern.png │ │ ├── horpattern.png │ │ ├── nobrush.png │ │ ├── solidpattern.png │ │ └── verpattern.png │ │ ├── plotpy-banner.svg │ │ ├── plotpy-vertical.svg │ │ ├── plotpy.svg │ │ ├── point_selection.png │ │ ├── print.png │ │ ├── python.png │ │ ├── quickview.png │ │ ├── refresh.png │ │ ├── rotationcenter.jpg │ │ ├── save_all.png │ │ ├── scales │ │ ├── lin_lin.png │ │ ├── lin_log.png │ │ ├── log_lin.png │ │ ├── log_log.png │ │ └── source.pdn │ │ ├── select.svg │ │ ├── select_area.svg │ │ ├── settings.png │ │ ├── shape.png │ │ ├── shapes │ │ ├── circle.png │ │ ├── contour.png │ │ ├── ellipse_shape.png │ │ ├── gtaxes.png │ │ ├── marker.png │ │ ├── oblique_rectangle.png │ │ ├── point_shape.png │ │ ├── polygon.png │ │ ├── polyline.png │ │ ├── rectangle.png │ │ ├── segment.png │ │ ├── xrange.png │ │ └── yrange.png │ │ ├── snapshot.png │ │ ├── styles │ │ ├── dash.png │ │ ├── dashdot.png │ │ ├── dashdotdot.png │ │ ├── dot.png │ │ └── solid.png │ │ ├── trash.png │ │ ├── trimage_lock.png │ │ ├── trimage_unlock.png │ │ ├── vcursor.png │ │ ├── vflip.png │ │ ├── xcursor.png │ │ ├── xmax.png │ │ ├── xmin.png │ │ └── zlog.svg ├── events.py ├── external │ ├── __init__.py │ └── sliders │ │ ├── __init__.py │ │ ├── _generic_range_slider.py │ │ ├── _generic_slider.py │ │ ├── _labeled.py │ │ ├── _misc.py │ │ ├── _range_style.py │ │ └── _sliders.py ├── interfaces │ ├── __init__.py │ ├── items.py │ ├── panel.py │ └── plotmanager.py ├── io.py ├── items │ ├── __init__.py │ ├── annotation.py │ ├── contour.py │ ├── curve │ │ ├── __init__.py │ │ ├── base.py │ │ └── errorbar.py │ ├── grid.py │ ├── histogram.py │ ├── image │ │ ├── __init__.py │ │ ├── base.py │ │ ├── filter.py │ │ ├── masked.py │ │ ├── misc.py │ │ ├── standard.py │ │ └── transform.py │ ├── label.py │ ├── polygonmap.py │ └── shape │ │ ├── __init__.py │ │ ├── axis.py │ │ ├── base.py │ │ ├── ellipse.py │ │ ├── marker.py │ │ ├── point.py │ │ ├── polygon.py │ │ ├── range.py │ │ ├── rectangle.py │ │ ├── segment.py │ │ └── svg.py ├── locale │ └── fr │ │ └── LC_MESSAGES │ │ └── plotpy.po ├── lutrange.py ├── mathutils │ ├── __init__.py │ ├── arrayfuncs.py │ ├── colormap.py │ ├── geometry.py │ └── scaler.py ├── panels │ ├── __init__.py │ ├── base.py │ ├── contrastadjustment.py │ ├── csection │ │ ├── __init__.py │ │ ├── csitem.py │ │ ├── csplot.py │ │ └── cswidget.py │ └── itemlist.py ├── plot │ ├── __init__.py │ ├── base.py │ ├── interactive.py │ ├── manager.py │ └── plotwidget.py ├── pyplot.py ├── styles │ ├── __init__.py │ ├── axes.py │ ├── base.py │ ├── curve.py │ ├── errorbar.py │ ├── histogram.py │ ├── image.py │ ├── label.py │ ├── polygonmap.py │ └── shape.py ├── tests │ ├── __init__.py │ ├── benchmarks │ │ ├── __init__.py │ │ ├── test_benchmarks.py │ │ ├── test_bigimages.py │ │ ├── test_large_number_of_annotations.py │ │ └── test_loadtest.py │ ├── conftest.py │ ├── data.py │ ├── data │ │ ├── brain.png │ │ ├── brain_cylinder.png │ │ ├── datetime.txt │ │ ├── mr-brain.dcm │ │ ├── svg_target.svg │ │ └── svg_tool.svg │ ├── features │ │ ├── __init__.py │ │ ├── test_auto_curve_image.py │ │ ├── test_autoscale_shapes.py │ │ ├── test_builder.py │ │ ├── test_colormap_editor.py │ │ ├── test_colormap_manager.py │ │ ├── test_computations.py │ │ ├── test_contrast.py │ │ ├── test_cursors.py │ │ ├── test_data_update_curve.py │ │ ├── test_data_update_image.py │ │ ├── test_dicom_image.py │ │ ├── test_fit.py │ │ ├── test_fit_locked_params.py │ │ ├── test_image_coords.py │ │ ├── test_image_filter.py │ │ ├── test_image_superp.py │ │ ├── test_loadsaveitems_hdf5.py │ │ ├── test_loadsaveitems_json.py │ │ ├── test_loadsaveitems_pickle.py │ │ ├── test_manager.py │ │ ├── test_no_auto_tools.py │ │ ├── test_plot_log.py │ │ ├── test_plot_time.py │ │ ├── test_plot_types.py │ │ ├── test_plot_yreverse.py │ │ ├── test_pyplot.py │ │ └── test_resize.py │ ├── items │ │ ├── __init__.py │ │ ├── test_annotated_range.py │ │ ├── test_annotations.py │ │ ├── test_curves.py │ │ ├── test_curves_highdpi.py │ │ ├── test_hist2d.py │ │ ├── test_histogram.py │ │ ├── test_image.py │ │ ├── test_image_contour.py │ │ ├── test_image_masked.py │ │ ├── test_image_masked_xy.py │ │ ├── test_image_rgb.py │ │ ├── test_image_xy.py │ │ ├── test_mandelbrot.py │ │ ├── test_pcolor.py │ │ ├── test_polygons.py │ │ ├── test_svgshapes.py │ │ └── test_transform.py │ ├── tools │ │ ├── __init__.py │ │ ├── test_actiontool.py │ │ ├── test_cross_section.py │ │ ├── test_cross_section_line.py │ │ ├── test_cross_section_oblique.py │ │ ├── test_customize_shape_tool.py │ │ ├── test_cyclic_import.py │ │ ├── test_downsample_curve.py │ │ ├── test_edit_point.py │ │ ├── test_get_point.py │ │ ├── test_get_points.py │ │ ├── test_get_rectangle.py │ │ ├── test_get_rectangle_with_svg.py │ │ ├── test_get_segment.py │ │ ├── test_image_plot_tools.py │ │ ├── test_stats_tools.py │ │ └── test_zaxislog.py │ ├── unit │ │ ├── __init__.py │ │ ├── test_annotation_tools.py │ │ ├── test_aspect_ratio_tool.py │ │ ├── test_baseplot.py │ │ ├── test_builder_annotation.py │ │ ├── test_builder_curve.py │ │ ├── test_builder_image.py │ │ ├── test_builder_shape.py │ │ ├── test_contour.py │ │ ├── test_cursor_tools.py │ │ ├── test_curve_tools.py │ │ ├── test_datetime_axis.py │ │ ├── test_display_coords_tool.py │ │ ├── test_events.py │ │ ├── test_fontparam.py │ │ ├── test_geometry.py │ │ ├── test_io.py │ │ ├── test_line.py │ │ ├── test_line_cross_section_tool.py │ │ ├── test_manipulate_selection.py │ │ ├── test_mask_tool.py │ │ ├── test_masked_dtype_change.py │ │ ├── test_multiline_tools.py │ │ ├── test_oblique_cross_section_tool.py │ │ ├── test_plot_curve.py │ │ ├── test_plot_image.py │ │ ├── test_rect_zoom.py │ │ ├── test_seg_dist.py │ │ ├── test_styles.py │ │ ├── test_tools_export.py │ │ └── utils.py │ ├── vistools.py │ └── widgets │ │ ├── __init__.py │ │ ├── test_dotarraydemo.py │ │ ├── test_filtertest1.py │ │ ├── test_filtertest2.py │ │ ├── test_fliprotate.py │ │ ├── test_plot_timecurve.py │ │ ├── test_qtdesigner.py │ │ ├── test_qtdesigner.ui │ │ ├── test_resize_dialog.py │ │ ├── test_rotatecrop.py │ │ ├── test_simple_dialog.py │ │ ├── test_simple_window.py │ │ ├── test_syncplot.py │ │ └── test_theme.py ├── tools │ ├── __init__.py │ ├── annotation.py │ ├── axes.py │ ├── base.py │ ├── cross_section.py │ ├── cursor.py │ ├── curve.py │ ├── image.py │ ├── item.py │ ├── label.py │ ├── misc.py │ ├── plot.py │ ├── selection.py │ └── shape.py └── widgets │ ├── __init__.py │ ├── about.py │ ├── basetransform.py │ ├── colormap │ ├── __init__.py │ ├── _slider.py │ ├── editor.py │ ├── manager.py │ └── widget.py │ ├── fit.py │ ├── fliprotate.py │ ├── imagefile.py │ ├── qtdesigner.py │ ├── resizedialog.py │ ├── rotatecrop.py │ └── selectdialog.py ├── pyproject.toml ├── qtdesigner └── plotplugin.py ├── requirements.txt ├── scripts ├── build-wheels.sh ├── build_inplace.bat ├── build_wheels.bat ├── run_with_env.py └── utils.bat ├── setup.py └── src ├── arrays.hpp ├── debug.hpp ├── histogram2d.pyx ├── mandelbrot.pyx ├── pcolor.cpp ├── points.hpp ├── scaler.cpp ├── scaler.hpp └── traits.hpp /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.coveragerc -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- 1 | PYTHONPATH=. -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.github/workflows/build_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test_pyqt5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.github/workflows/test_pyqt5.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/README.md -------------------------------------------------------------------------------- /babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/babel.cfg -------------------------------------------------------------------------------- /colormaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/colormaps/README.md -------------------------------------------------------------------------------- /colormaps/_cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/colormaps/_cm.py -------------------------------------------------------------------------------- /colormaps/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/colormaps/colormap.py -------------------------------------------------------------------------------- /colormaps/matplotlib_cmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/colormaps/matplotlib_cmaps.py -------------------------------------------------------------------------------- /doc/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/_static/favicon.ico -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/dev/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/dev/build.rst -------------------------------------------------------------------------------- /doc/dev/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/dev/contribute.rst -------------------------------------------------------------------------------- /doc/dev/guiqwt_to_plotpy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/dev/guiqwt_to_plotpy.csv -------------------------------------------------------------------------------- /doc/dev/guiqwt_to_plotpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/dev/guiqwt_to_plotpy.rst -------------------------------------------------------------------------------- /doc/dev/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/dev/index.rst -------------------------------------------------------------------------------- /doc/dev/platforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/dev/platforms.rst -------------------------------------------------------------------------------- /doc/dev/v1_to_guidata_v3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/dev/v1_to_guidata_v3.csv -------------------------------------------------------------------------------- /doc/dev/v1_to_v2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/dev/v1_to_v2.csv -------------------------------------------------------------------------------- /doc/dev/v1_to_v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/dev/v1_to_v2.rst -------------------------------------------------------------------------------- /doc/features/colormapmanager.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.widgets.colormap 2 | -------------------------------------------------------------------------------- /doc/features/events.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.events 2 | -------------------------------------------------------------------------------- /doc/features/fit.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.widgets.fit 2 | -------------------------------------------------------------------------------- /doc/features/fliprotate.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.widgets.fliprotate 2 | -------------------------------------------------------------------------------- /doc/features/imagefile.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.widgets.imagefile 2 | -------------------------------------------------------------------------------- /doc/features/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/index.rst -------------------------------------------------------------------------------- /doc/features/io.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.io -------------------------------------------------------------------------------- /doc/features/items/builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/items/builder.rst -------------------------------------------------------------------------------- /doc/features/items/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/items/examples.rst -------------------------------------------------------------------------------- /doc/features/items/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/items/index.rst -------------------------------------------------------------------------------- /doc/features/items/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/items/overview.rst -------------------------------------------------------------------------------- /doc/features/items/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/items/reference.rst -------------------------------------------------------------------------------- /doc/features/mathutils/colormaps.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.mathutils.colormap -------------------------------------------------------------------------------- /doc/features/mathutils/geometry.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.mathutils.geometry -------------------------------------------------------------------------------- /doc/features/mathutils/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/mathutils/index.rst -------------------------------------------------------------------------------- /doc/features/mathutils/scaler.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.mathutils.scaler -------------------------------------------------------------------------------- /doc/features/panels/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/panels/index.rst -------------------------------------------------------------------------------- /doc/features/panels/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/panels/overview.rst -------------------------------------------------------------------------------- /doc/features/panels/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/panels/reference.rst -------------------------------------------------------------------------------- /doc/features/plot/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/plot/examples.rst -------------------------------------------------------------------------------- /doc/features/plot/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/plot/index.rst -------------------------------------------------------------------------------- /doc/features/plot/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/plot/overview.rst -------------------------------------------------------------------------------- /doc/features/plot/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/plot/reference.rst -------------------------------------------------------------------------------- /doc/features/pyplot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/pyplot.rst -------------------------------------------------------------------------------- /doc/features/resizedialog.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.widgets.resizedialog 2 | -------------------------------------------------------------------------------- /doc/features/rotatecrop.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.widgets.rotatecrop 2 | -------------------------------------------------------------------------------- /doc/features/selectdialog.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: plotpy.widgets.selectdialog 2 | -------------------------------------------------------------------------------- /doc/features/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/signals.rst -------------------------------------------------------------------------------- /doc/features/styles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/styles/index.rst -------------------------------------------------------------------------------- /doc/features/styles/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/styles/overview.rst -------------------------------------------------------------------------------- /doc/features/styles/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/styles/reference.rst -------------------------------------------------------------------------------- /doc/features/tools/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/tools/examples.rst -------------------------------------------------------------------------------- /doc/features/tools/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/tools/index.rst -------------------------------------------------------------------------------- /doc/features/tools/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/tools/overview.rst -------------------------------------------------------------------------------- /doc/features/tools/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/features/tools/reference.rst -------------------------------------------------------------------------------- /doc/images/my_plot_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/my_plot_manager.png -------------------------------------------------------------------------------- /doc/images/my_plot_manager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/my_plot_manager.svg -------------------------------------------------------------------------------- /doc/images/panorama-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/panorama-vertical.png -------------------------------------------------------------------------------- /doc/images/panorama-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/panorama-vertical.svg -------------------------------------------------------------------------------- /doc/images/panorama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/panorama.png -------------------------------------------------------------------------------- /doc/images/panorama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/panorama.svg -------------------------------------------------------------------------------- /doc/images/plot_widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/plot_widgets.png -------------------------------------------------------------------------------- /doc/images/plot_widgets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/plot_widgets.svg -------------------------------------------------------------------------------- /doc/images/plotpy-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/plotpy-banner.png -------------------------------------------------------------------------------- /doc/images/plotpy-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/plotpy-vertical.png -------------------------------------------------------------------------------- /doc/images/screenshots/__init__.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/__init__.png -------------------------------------------------------------------------------- /doc/images/screenshots/computations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/computations.png -------------------------------------------------------------------------------- /doc/images/screenshots/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/contrast.png -------------------------------------------------------------------------------- /doc/images/screenshots/cross_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/cross_section.png -------------------------------------------------------------------------------- /doc/images/screenshots/cross_section2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/cross_section2.png -------------------------------------------------------------------------------- /doc/images/screenshots/dotarraydemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/dotarraydemo.png -------------------------------------------------------------------------------- /doc/images/screenshots/filtertest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/filtertest1.png -------------------------------------------------------------------------------- /doc/images/screenshots/filtertest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/filtertest2.png -------------------------------------------------------------------------------- /doc/images/screenshots/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/fit.png -------------------------------------------------------------------------------- /doc/images/screenshots/get_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/get_point.png -------------------------------------------------------------------------------- /doc/images/screenshots/hist2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/hist2d.png -------------------------------------------------------------------------------- /doc/images/screenshots/image_plot_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/image_plot_tools.png -------------------------------------------------------------------------------- /doc/images/screenshots/imagefilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/imagefilter.png -------------------------------------------------------------------------------- /doc/images/screenshots/imagesuperp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/imagesuperp.png -------------------------------------------------------------------------------- /doc/images/screenshots/imagexy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/imagexy.png -------------------------------------------------------------------------------- /doc/images/screenshots/manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/manager.png -------------------------------------------------------------------------------- /doc/images/screenshots/mandelbrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/mandelbrot.png -------------------------------------------------------------------------------- /doc/images/screenshots/pcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/pcolor.png -------------------------------------------------------------------------------- /doc/images/screenshots/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/plot.png -------------------------------------------------------------------------------- /doc/images/screenshots/simple_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/simple_dialog.png -------------------------------------------------------------------------------- /doc/images/screenshots/simple_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/simple_window.png -------------------------------------------------------------------------------- /doc/images/screenshots/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/images/screenshots/transform.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/intro/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/intro/examples.rst -------------------------------------------------------------------------------- /doc/intro/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/intro/index.rst -------------------------------------------------------------------------------- /doc/intro/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/intro/installation.rst -------------------------------------------------------------------------------- /doc/intro/licenses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/intro/licenses.rst -------------------------------------------------------------------------------- /doc/intro/motivation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/intro/motivation.rst -------------------------------------------------------------------------------- /doc/intro/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/intro/overview.rst -------------------------------------------------------------------------------- /doc/release_notes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/index.rst -------------------------------------------------------------------------------- /doc/release_notes/release_2.00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/release_2.00.md -------------------------------------------------------------------------------- /doc/release_notes/release_2.01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/release_2.01.md -------------------------------------------------------------------------------- /doc/release_notes/release_2.02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/release_2.02.md -------------------------------------------------------------------------------- /doc/release_notes/release_2.03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/release_2.03.md -------------------------------------------------------------------------------- /doc/release_notes/release_2.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/release_2.04.md -------------------------------------------------------------------------------- /doc/release_notes/release_2.05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/release_2.05.md -------------------------------------------------------------------------------- /doc/release_notes/release_2.06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/release_2.06.md -------------------------------------------------------------------------------- /doc/release_notes/release_2.07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/release_2.07.md -------------------------------------------------------------------------------- /doc/release_notes/release_2.08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/release_notes/release_2.08.md -------------------------------------------------------------------------------- /doc/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/doc/requirements.rst -------------------------------------------------------------------------------- /media/LinkedIn/2023_10_31-V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/media/LinkedIn/2023_10_31-V2.md -------------------------------------------------------------------------------- /media/X/2023_10_31-V2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/media/X/2023_10_31-V2.txt -------------------------------------------------------------------------------- /plotpy-tests.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy-tests.desktop -------------------------------------------------------------------------------- /plotpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/__init__.py -------------------------------------------------------------------------------- /plotpy/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/builder/__init__.py -------------------------------------------------------------------------------- /plotpy/builder/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/builder/annotation.py -------------------------------------------------------------------------------- /plotpy/builder/curvemarker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/builder/curvemarker.py -------------------------------------------------------------------------------- /plotpy/builder/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/builder/image.py -------------------------------------------------------------------------------- /plotpy/builder/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/builder/label.py -------------------------------------------------------------------------------- /plotpy/builder/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/builder/plot.py -------------------------------------------------------------------------------- /plotpy/builder/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/builder/shape.py -------------------------------------------------------------------------------- /plotpy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/config.py -------------------------------------------------------------------------------- /plotpy/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/constants.py -------------------------------------------------------------------------------- /plotpy/coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/coords.py -------------------------------------------------------------------------------- /plotpy/data/colormaps_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/colormaps_default.json -------------------------------------------------------------------------------- /plotpy/data/icons/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/apply.png -------------------------------------------------------------------------------- /plotpy/data/icons/arredit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/arredit.png -------------------------------------------------------------------------------- /plotpy/data/icons/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/arrow_down.png -------------------------------------------------------------------------------- /plotpy/data/icons/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/arrow_up.png -------------------------------------------------------------------------------- /plotpy/data/icons/autorefresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/autorefresh.png -------------------------------------------------------------------------------- /plotpy/data/icons/autoscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/autoscale.png -------------------------------------------------------------------------------- /plotpy/data/icons/axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/axes.png -------------------------------------------------------------------------------- /plotpy/data/icons/busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/busy.png -------------------------------------------------------------------------------- /plotpy/data/icons/cell_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/cell_edit.png -------------------------------------------------------------------------------- /plotpy/data/icons/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/center.png -------------------------------------------------------------------------------- /plotpy/data/icons/cmap_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/cmap_edit.png -------------------------------------------------------------------------------- /plotpy/data/icons/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/contrast.png -------------------------------------------------------------------------------- /plotpy/data/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/copy.png -------------------------------------------------------------------------------- /plotpy/data/icons/copytoclipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/copytoclipboard.png -------------------------------------------------------------------------------- /plotpy/data/icons/csapplylut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/csapplylut.png -------------------------------------------------------------------------------- /plotpy/data/icons/csautoscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/csautoscale.png -------------------------------------------------------------------------------- /plotpy/data/icons/csection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/csection.png -------------------------------------------------------------------------------- /plotpy/data/icons/csection_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/csection_a.png -------------------------------------------------------------------------------- /plotpy/data/icons/csection_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/csection_line.png -------------------------------------------------------------------------------- /plotpy/data/icons/csection_oblique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/csection_oblique.png -------------------------------------------------------------------------------- /plotpy/data/icons/csperimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/csperimage.png -------------------------------------------------------------------------------- /plotpy/data/icons/curve_downsample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/curve_downsample.png -------------------------------------------------------------------------------- /plotpy/data/icons/curvestyles/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/curvestyles/dots.png -------------------------------------------------------------------------------- /plotpy/data/icons/curvestyles/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/curvestyles/lines.png -------------------------------------------------------------------------------- /plotpy/data/icons/curvestyles/steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/curvestyles/steps.png -------------------------------------------------------------------------------- /plotpy/data/icons/curvestyles/sticks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/curvestyles/sticks.png -------------------------------------------------------------------------------- /plotpy/data/icons/curvetypes/xfy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/curvetypes/xfy.png -------------------------------------------------------------------------------- /plotpy/data/icons/curvetypes/yfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/curvetypes/yfx.png -------------------------------------------------------------------------------- /plotpy/data/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/delete.png -------------------------------------------------------------------------------- /plotpy/data/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/edit.png -------------------------------------------------------------------------------- /plotpy/data/icons/edit_point_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/edit_point_selection.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/edit.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/edit_add.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/editcopy.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/editdelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/editdelete.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/editpaste.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/fileimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/fileimport.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/filesave.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/imshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/imshow.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/insert.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/plot.png -------------------------------------------------------------------------------- /plotpy/data/icons/editors/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/editors/rename.png -------------------------------------------------------------------------------- /plotpy/data/icons/eliminate_outliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/eliminate_outliers.png -------------------------------------------------------------------------------- /plotpy/data/icons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/eraser.png -------------------------------------------------------------------------------- /plotpy/data/icons/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/exit.png -------------------------------------------------------------------------------- /plotpy/data/icons/expander_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/expander_down.png -------------------------------------------------------------------------------- /plotpy/data/icons/expander_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/expander_right.png -------------------------------------------------------------------------------- /plotpy/data/icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/export.png -------------------------------------------------------------------------------- /plotpy/data/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/file.png -------------------------------------------------------------------------------- /plotpy/data/icons/fileclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/fileclose.png -------------------------------------------------------------------------------- /plotpy/data/icons/fileimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/fileimport.png -------------------------------------------------------------------------------- /plotpy/data/icons/filenew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filenew.png -------------------------------------------------------------------------------- /plotpy/data/icons/fileopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/fileopen.png -------------------------------------------------------------------------------- /plotpy/data/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filesave.png -------------------------------------------------------------------------------- /plotpy/data/icons/filesaveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filesaveas.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/doc.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/gif.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/html.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/jpg.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/pdf.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/png.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/pps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/pps.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/ps.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/tar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/tar.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/tgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/tgz.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/tif.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/txt.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/xls.png -------------------------------------------------------------------------------- /plotpy/data/icons/filetypes/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/filetypes/zip.png -------------------------------------------------------------------------------- /plotpy/data/icons/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/font.png -------------------------------------------------------------------------------- /plotpy/data/icons/full_range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/full_range.png -------------------------------------------------------------------------------- /plotpy/data/icons/funct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/funct.png -------------------------------------------------------------------------------- /plotpy/data/icons/hcursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/hcursor.png -------------------------------------------------------------------------------- /plotpy/data/icons/hflip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/hflip.png -------------------------------------------------------------------------------- /plotpy/data/icons/imagestats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/imagestats.png -------------------------------------------------------------------------------- /plotpy/data/icons/item_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/item_list.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/annotation.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/curve.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/errorbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/errorbar.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/grid.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/histogram.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/histogram2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/histogram2d.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/image.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/label.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/legend.png -------------------------------------------------------------------------------- /plotpy/data/icons/items/polygonmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/items/polygonmap.png -------------------------------------------------------------------------------- /plotpy/data/icons/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/magnifier.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/cross.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/diamond.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/ellipse.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/hexagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/hexagon.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/point.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/square.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/star.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/triangle_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/triangle_d.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/triangle_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/triangle_l.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/triangle_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/triangle_r.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/triangle_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/triangle_u.png -------------------------------------------------------------------------------- /plotpy/data/icons/markers/xcross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markers/xcross.png -------------------------------------------------------------------------------- /plotpy/data/icons/markerstyles/cross_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markerstyles/cross_marker.png -------------------------------------------------------------------------------- /plotpy/data/icons/markerstyles/horiz_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markerstyles/horiz_marker.png -------------------------------------------------------------------------------- /plotpy/data/icons/markerstyles/vert_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/markerstyles/vert_marker.png -------------------------------------------------------------------------------- /plotpy/data/icons/mask/mask_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/mask/mask_circle.png -------------------------------------------------------------------------------- /plotpy/data/icons/mask/mask_circle_outside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/mask/mask_circle_outside.png -------------------------------------------------------------------------------- /plotpy/data/icons/mask/mask_rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/mask/mask_rectangle.png -------------------------------------------------------------------------------- /plotpy/data/icons/mask/mask_rectangle_outside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/mask/mask_rectangle_outside.png -------------------------------------------------------------------------------- /plotpy/data/icons/mask/mask_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/mask/mask_tool.png -------------------------------------------------------------------------------- /plotpy/data/icons/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/max.png -------------------------------------------------------------------------------- /plotpy/data/icons/min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/min.png -------------------------------------------------------------------------------- /plotpy/data/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/move.png -------------------------------------------------------------------------------- /plotpy/data/icons/multipoint_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/multipoint_selection.png -------------------------------------------------------------------------------- /plotpy/data/icons/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/none.png -------------------------------------------------------------------------------- /plotpy/data/icons/not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/not_found.png -------------------------------------------------------------------------------- /plotpy/data/icons/on_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/on_curve.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/bdiagpattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/bdiagpattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/crosspattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/crosspattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/dense1pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/dense1pattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/dense2pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/dense2pattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/dense3pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/dense3pattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/dense4pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/dense4pattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/dense5pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/dense5pattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/dense6pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/dense6pattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/dense7pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/dense7pattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/diagcrosspattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/diagcrosspattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/fdiagpattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/fdiagpattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/horpattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/horpattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/nobrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/nobrush.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/solidpattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/solidpattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/patterns/verpattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/patterns/verpattern.png -------------------------------------------------------------------------------- /plotpy/data/icons/plotpy-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/plotpy-banner.svg -------------------------------------------------------------------------------- /plotpy/data/icons/plotpy-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/plotpy-vertical.svg -------------------------------------------------------------------------------- /plotpy/data/icons/plotpy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/plotpy.svg -------------------------------------------------------------------------------- /plotpy/data/icons/point_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/point_selection.png -------------------------------------------------------------------------------- /plotpy/data/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/print.png -------------------------------------------------------------------------------- /plotpy/data/icons/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/python.png -------------------------------------------------------------------------------- /plotpy/data/icons/quickview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/quickview.png -------------------------------------------------------------------------------- /plotpy/data/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/refresh.png -------------------------------------------------------------------------------- /plotpy/data/icons/rotationcenter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/rotationcenter.jpg -------------------------------------------------------------------------------- /plotpy/data/icons/save_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/save_all.png -------------------------------------------------------------------------------- /plotpy/data/icons/scales/lin_lin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/scales/lin_lin.png -------------------------------------------------------------------------------- /plotpy/data/icons/scales/lin_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/scales/lin_log.png -------------------------------------------------------------------------------- /plotpy/data/icons/scales/log_lin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/scales/log_lin.png -------------------------------------------------------------------------------- /plotpy/data/icons/scales/log_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/scales/log_log.png -------------------------------------------------------------------------------- /plotpy/data/icons/scales/source.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/scales/source.pdn -------------------------------------------------------------------------------- /plotpy/data/icons/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/select.svg -------------------------------------------------------------------------------- /plotpy/data/icons/select_area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/select_area.svg -------------------------------------------------------------------------------- /plotpy/data/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/settings.png -------------------------------------------------------------------------------- /plotpy/data/icons/shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shape.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/circle.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/contour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/contour.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/ellipse_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/ellipse_shape.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/gtaxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/gtaxes.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/marker.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/oblique_rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/oblique_rectangle.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/point_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/point_shape.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/polygon.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/polyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/polyline.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/rectangle.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/segment.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/xrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/xrange.png -------------------------------------------------------------------------------- /plotpy/data/icons/shapes/yrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/shapes/yrange.png -------------------------------------------------------------------------------- /plotpy/data/icons/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/snapshot.png -------------------------------------------------------------------------------- /plotpy/data/icons/styles/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/styles/dash.png -------------------------------------------------------------------------------- /plotpy/data/icons/styles/dashdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/styles/dashdot.png -------------------------------------------------------------------------------- /plotpy/data/icons/styles/dashdotdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/styles/dashdotdot.png -------------------------------------------------------------------------------- /plotpy/data/icons/styles/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/styles/dot.png -------------------------------------------------------------------------------- /plotpy/data/icons/styles/solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/styles/solid.png -------------------------------------------------------------------------------- /plotpy/data/icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/trash.png -------------------------------------------------------------------------------- /plotpy/data/icons/trimage_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/trimage_lock.png -------------------------------------------------------------------------------- /plotpy/data/icons/trimage_unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/trimage_unlock.png -------------------------------------------------------------------------------- /plotpy/data/icons/vcursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/vcursor.png -------------------------------------------------------------------------------- /plotpy/data/icons/vflip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/vflip.png -------------------------------------------------------------------------------- /plotpy/data/icons/xcursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/xcursor.png -------------------------------------------------------------------------------- /plotpy/data/icons/xmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/xmax.png -------------------------------------------------------------------------------- /plotpy/data/icons/xmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/xmin.png -------------------------------------------------------------------------------- /plotpy/data/icons/zlog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/data/icons/zlog.svg -------------------------------------------------------------------------------- /plotpy/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/events.py -------------------------------------------------------------------------------- /plotpy/external/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/external/__init__.py -------------------------------------------------------------------------------- /plotpy/external/sliders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/external/sliders/__init__.py -------------------------------------------------------------------------------- /plotpy/external/sliders/_generic_range_slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/external/sliders/_generic_range_slider.py -------------------------------------------------------------------------------- /plotpy/external/sliders/_generic_slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/external/sliders/_generic_slider.py -------------------------------------------------------------------------------- /plotpy/external/sliders/_labeled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/external/sliders/_labeled.py -------------------------------------------------------------------------------- /plotpy/external/sliders/_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/external/sliders/_misc.py -------------------------------------------------------------------------------- /plotpy/external/sliders/_range_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/external/sliders/_range_style.py -------------------------------------------------------------------------------- /plotpy/external/sliders/_sliders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/external/sliders/_sliders.py -------------------------------------------------------------------------------- /plotpy/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/interfaces/__init__.py -------------------------------------------------------------------------------- /plotpy/interfaces/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/interfaces/items.py -------------------------------------------------------------------------------- /plotpy/interfaces/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/interfaces/panel.py -------------------------------------------------------------------------------- /plotpy/interfaces/plotmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/interfaces/plotmanager.py -------------------------------------------------------------------------------- /plotpy/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/io.py -------------------------------------------------------------------------------- /plotpy/items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/__init__.py -------------------------------------------------------------------------------- /plotpy/items/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/annotation.py -------------------------------------------------------------------------------- /plotpy/items/contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/contour.py -------------------------------------------------------------------------------- /plotpy/items/curve/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/curve/__init__.py -------------------------------------------------------------------------------- /plotpy/items/curve/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/curve/base.py -------------------------------------------------------------------------------- /plotpy/items/curve/errorbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/curve/errorbar.py -------------------------------------------------------------------------------- /plotpy/items/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/grid.py -------------------------------------------------------------------------------- /plotpy/items/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/histogram.py -------------------------------------------------------------------------------- /plotpy/items/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/image/__init__.py -------------------------------------------------------------------------------- /plotpy/items/image/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/image/base.py -------------------------------------------------------------------------------- /plotpy/items/image/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/image/filter.py -------------------------------------------------------------------------------- /plotpy/items/image/masked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/image/masked.py -------------------------------------------------------------------------------- /plotpy/items/image/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/image/misc.py -------------------------------------------------------------------------------- /plotpy/items/image/standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/image/standard.py -------------------------------------------------------------------------------- /plotpy/items/image/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/image/transform.py -------------------------------------------------------------------------------- /plotpy/items/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/label.py -------------------------------------------------------------------------------- /plotpy/items/polygonmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/polygonmap.py -------------------------------------------------------------------------------- /plotpy/items/shape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/__init__.py -------------------------------------------------------------------------------- /plotpy/items/shape/axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/axis.py -------------------------------------------------------------------------------- /plotpy/items/shape/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/base.py -------------------------------------------------------------------------------- /plotpy/items/shape/ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/ellipse.py -------------------------------------------------------------------------------- /plotpy/items/shape/marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/marker.py -------------------------------------------------------------------------------- /plotpy/items/shape/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/point.py -------------------------------------------------------------------------------- /plotpy/items/shape/polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/polygon.py -------------------------------------------------------------------------------- /plotpy/items/shape/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/range.py -------------------------------------------------------------------------------- /plotpy/items/shape/rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/rectangle.py -------------------------------------------------------------------------------- /plotpy/items/shape/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/segment.py -------------------------------------------------------------------------------- /plotpy/items/shape/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/items/shape/svg.py -------------------------------------------------------------------------------- /plotpy/locale/fr/LC_MESSAGES/plotpy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/locale/fr/LC_MESSAGES/plotpy.po -------------------------------------------------------------------------------- /plotpy/lutrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/lutrange.py -------------------------------------------------------------------------------- /plotpy/mathutils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /plotpy/mathutils/arrayfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/mathutils/arrayfuncs.py -------------------------------------------------------------------------------- /plotpy/mathutils/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/mathutils/colormap.py -------------------------------------------------------------------------------- /plotpy/mathutils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/mathutils/geometry.py -------------------------------------------------------------------------------- /plotpy/mathutils/scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/mathutils/scaler.py -------------------------------------------------------------------------------- /plotpy/panels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/panels/__init__.py -------------------------------------------------------------------------------- /plotpy/panels/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/panels/base.py -------------------------------------------------------------------------------- /plotpy/panels/contrastadjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/panels/contrastadjustment.py -------------------------------------------------------------------------------- /plotpy/panels/csection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/panels/csection/__init__.py -------------------------------------------------------------------------------- /plotpy/panels/csection/csitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/panels/csection/csitem.py -------------------------------------------------------------------------------- /plotpy/panels/csection/csplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/panels/csection/csplot.py -------------------------------------------------------------------------------- /plotpy/panels/csection/cswidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/panels/csection/cswidget.py -------------------------------------------------------------------------------- /plotpy/panels/itemlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/panels/itemlist.py -------------------------------------------------------------------------------- /plotpy/plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/plot/__init__.py -------------------------------------------------------------------------------- /plotpy/plot/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/plot/base.py -------------------------------------------------------------------------------- /plotpy/plot/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/plot/interactive.py -------------------------------------------------------------------------------- /plotpy/plot/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/plot/manager.py -------------------------------------------------------------------------------- /plotpy/plot/plotwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/plot/plotwidget.py -------------------------------------------------------------------------------- /plotpy/pyplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/pyplot.py -------------------------------------------------------------------------------- /plotpy/styles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/__init__.py -------------------------------------------------------------------------------- /plotpy/styles/axes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/axes.py -------------------------------------------------------------------------------- /plotpy/styles/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/base.py -------------------------------------------------------------------------------- /plotpy/styles/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/curve.py -------------------------------------------------------------------------------- /plotpy/styles/errorbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/errorbar.py -------------------------------------------------------------------------------- /plotpy/styles/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/histogram.py -------------------------------------------------------------------------------- /plotpy/styles/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/image.py -------------------------------------------------------------------------------- /plotpy/styles/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/label.py -------------------------------------------------------------------------------- /plotpy/styles/polygonmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/polygonmap.py -------------------------------------------------------------------------------- /plotpy/styles/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/styles/shape.py -------------------------------------------------------------------------------- /plotpy/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/__init__.py -------------------------------------------------------------------------------- /plotpy/tests/benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/benchmarks/__init__.py -------------------------------------------------------------------------------- /plotpy/tests/benchmarks/test_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/benchmarks/test_benchmarks.py -------------------------------------------------------------------------------- /plotpy/tests/benchmarks/test_bigimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/benchmarks/test_bigimages.py -------------------------------------------------------------------------------- /plotpy/tests/benchmarks/test_large_number_of_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/benchmarks/test_large_number_of_annotations.py -------------------------------------------------------------------------------- /plotpy/tests/benchmarks/test_loadtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/benchmarks/test_loadtest.py -------------------------------------------------------------------------------- /plotpy/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/conftest.py -------------------------------------------------------------------------------- /plotpy/tests/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/data.py -------------------------------------------------------------------------------- /plotpy/tests/data/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/data/brain.png -------------------------------------------------------------------------------- /plotpy/tests/data/brain_cylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/data/brain_cylinder.png -------------------------------------------------------------------------------- /plotpy/tests/data/datetime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/data/datetime.txt -------------------------------------------------------------------------------- /plotpy/tests/data/mr-brain.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/data/mr-brain.dcm -------------------------------------------------------------------------------- /plotpy/tests/data/svg_target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/data/svg_target.svg -------------------------------------------------------------------------------- /plotpy/tests/data/svg_tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/data/svg_tool.svg -------------------------------------------------------------------------------- /plotpy/tests/features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plotpy/tests/features/test_auto_curve_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_auto_curve_image.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_autoscale_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_autoscale_shapes.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_builder.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_colormap_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_colormap_editor.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_colormap_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_colormap_manager.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_computations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_computations.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_contrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_contrast.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_cursors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_cursors.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_data_update_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_data_update_curve.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_data_update_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_data_update_image.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_dicom_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_dicom_image.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_fit.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_fit_locked_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_fit_locked_params.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_image_coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_image_coords.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_image_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_image_filter.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_image_superp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_image_superp.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_loadsaveitems_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_loadsaveitems_hdf5.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_loadsaveitems_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_loadsaveitems_json.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_loadsaveitems_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_loadsaveitems_pickle.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_manager.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_no_auto_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_no_auto_tools.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_plot_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_plot_log.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_plot_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_plot_time.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_plot_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_plot_types.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_plot_yreverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_plot_yreverse.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_pyplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_pyplot.py -------------------------------------------------------------------------------- /plotpy/tests/features/test_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/features/test_resize.py -------------------------------------------------------------------------------- /plotpy/tests/items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plotpy/tests/items/test_annotated_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_annotated_range.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_annotations.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_curves.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_curves_highdpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_curves_highdpi.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_hist2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_hist2d.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_histogram.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_image.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_image_contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_image_contour.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_image_masked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_image_masked.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_image_masked_xy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_image_masked_xy.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_image_rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_image_rgb.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_image_xy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_image_xy.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_mandelbrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_mandelbrot.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_pcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_pcolor.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_polygons.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_svgshapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_svgshapes.py -------------------------------------------------------------------------------- /plotpy/tests/items/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/items/test_transform.py -------------------------------------------------------------------------------- /plotpy/tests/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plotpy/tests/tools/test_actiontool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_actiontool.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_cross_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_cross_section.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_cross_section_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_cross_section_line.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_cross_section_oblique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_cross_section_oblique.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_customize_shape_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_customize_shape_tool.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_cyclic_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_cyclic_import.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_downsample_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_downsample_curve.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_edit_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_edit_point.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_get_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_get_point.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_get_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_get_points.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_get_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_get_rectangle.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_get_rectangle_with_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_get_rectangle_with_svg.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_get_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_get_segment.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_image_plot_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_image_plot_tools.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_stats_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_stats_tools.py -------------------------------------------------------------------------------- /plotpy/tests/tools/test_zaxislog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/tools/test_zaxislog.py -------------------------------------------------------------------------------- /plotpy/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plotpy/tests/unit/test_annotation_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_annotation_tools.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_aspect_ratio_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_aspect_ratio_tool.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_baseplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_baseplot.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_builder_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_builder_annotation.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_builder_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_builder_curve.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_builder_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_builder_image.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_builder_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_builder_shape.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_contour.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_cursor_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_cursor_tools.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_curve_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_curve_tools.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_datetime_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_datetime_axis.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_display_coords_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_display_coords_tool.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_events.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_fontparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_fontparam.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_geometry.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_io.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_line.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_line_cross_section_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_line_cross_section_tool.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_manipulate_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_manipulate_selection.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_mask_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_mask_tool.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_masked_dtype_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_masked_dtype_change.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_multiline_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_multiline_tools.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_oblique_cross_section_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_oblique_cross_section_tool.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_plot_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_plot_curve.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_plot_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_plot_image.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_rect_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_rect_zoom.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_seg_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_seg_dist.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_styles.py -------------------------------------------------------------------------------- /plotpy/tests/unit/test_tools_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/test_tools_export.py -------------------------------------------------------------------------------- /plotpy/tests/unit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/unit/utils.py -------------------------------------------------------------------------------- /plotpy/tests/vistools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/vistools.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_dotarraydemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_dotarraydemo.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_filtertest1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_filtertest1.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_filtertest2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_filtertest2.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_fliprotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_fliprotate.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_plot_timecurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_plot_timecurve.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_qtdesigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_qtdesigner.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_qtdesigner.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_qtdesigner.ui -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_resize_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_resize_dialog.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_rotatecrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_rotatecrop.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_simple_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_simple_dialog.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_simple_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_simple_window.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_syncplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_syncplot.py -------------------------------------------------------------------------------- /plotpy/tests/widgets/test_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tests/widgets/test_theme.py -------------------------------------------------------------------------------- /plotpy/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/__init__.py -------------------------------------------------------------------------------- /plotpy/tools/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/annotation.py -------------------------------------------------------------------------------- /plotpy/tools/axes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/axes.py -------------------------------------------------------------------------------- /plotpy/tools/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/base.py -------------------------------------------------------------------------------- /plotpy/tools/cross_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/cross_section.py -------------------------------------------------------------------------------- /plotpy/tools/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/cursor.py -------------------------------------------------------------------------------- /plotpy/tools/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/curve.py -------------------------------------------------------------------------------- /plotpy/tools/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/image.py -------------------------------------------------------------------------------- /plotpy/tools/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/item.py -------------------------------------------------------------------------------- /plotpy/tools/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/label.py -------------------------------------------------------------------------------- /plotpy/tools/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/misc.py -------------------------------------------------------------------------------- /plotpy/tools/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/plot.py -------------------------------------------------------------------------------- /plotpy/tools/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/selection.py -------------------------------------------------------------------------------- /plotpy/tools/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/tools/shape.py -------------------------------------------------------------------------------- /plotpy/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /plotpy/widgets/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/about.py -------------------------------------------------------------------------------- /plotpy/widgets/basetransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/basetransform.py -------------------------------------------------------------------------------- /plotpy/widgets/colormap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/colormap/__init__.py -------------------------------------------------------------------------------- /plotpy/widgets/colormap/_slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/colormap/_slider.py -------------------------------------------------------------------------------- /plotpy/widgets/colormap/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/colormap/editor.py -------------------------------------------------------------------------------- /plotpy/widgets/colormap/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/colormap/manager.py -------------------------------------------------------------------------------- /plotpy/widgets/colormap/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/colormap/widget.py -------------------------------------------------------------------------------- /plotpy/widgets/fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/fit.py -------------------------------------------------------------------------------- /plotpy/widgets/fliprotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/fliprotate.py -------------------------------------------------------------------------------- /plotpy/widgets/imagefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/imagefile.py -------------------------------------------------------------------------------- /plotpy/widgets/qtdesigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/qtdesigner.py -------------------------------------------------------------------------------- /plotpy/widgets/resizedialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/resizedialog.py -------------------------------------------------------------------------------- /plotpy/widgets/rotatecrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/rotatecrop.py -------------------------------------------------------------------------------- /plotpy/widgets/selectdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/plotpy/widgets/selectdialog.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /qtdesigner/plotplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/qtdesigner/plotplugin.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/build-wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/scripts/build-wheels.sh -------------------------------------------------------------------------------- /scripts/build_inplace.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/scripts/build_inplace.bat -------------------------------------------------------------------------------- /scripts/build_wheels.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/scripts/build_wheels.bat -------------------------------------------------------------------------------- /scripts/run_with_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/scripts/run_with_env.py -------------------------------------------------------------------------------- /scripts/utils.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/scripts/utils.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/setup.py -------------------------------------------------------------------------------- /src/arrays.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/src/arrays.hpp -------------------------------------------------------------------------------- /src/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/src/debug.hpp -------------------------------------------------------------------------------- /src/histogram2d.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/src/histogram2d.pyx -------------------------------------------------------------------------------- /src/mandelbrot.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/src/mandelbrot.pyx -------------------------------------------------------------------------------- /src/pcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/src/pcolor.cpp -------------------------------------------------------------------------------- /src/points.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/src/points.hpp -------------------------------------------------------------------------------- /src/scaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/src/scaler.cpp -------------------------------------------------------------------------------- /src/scaler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/src/scaler.hpp -------------------------------------------------------------------------------- /src/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PlotPyStack/PlotPy/HEAD/src/traits.hpp --------------------------------------------------------------------------------