├── .gitignore ├── LICENSE.txt ├── README.md ├── qtplot ├── __init__.py ├── canvas.py ├── colormap.py ├── colormaps │ ├── 0greyscale.npy │ ├── 1band.npy │ ├── 4bands.npy │ ├── 8bands.npy │ ├── aaron.npy │ ├── afm-hot.npy │ ├── blue-green-pink.npy │ ├── color-gray-print.npy │ ├── hot.npy │ ├── inferno.npy │ ├── magma.npy │ ├── matlabautumn.npy │ ├── matlabbone.npy │ ├── matlabcool.npy │ ├── matlabcopper.npy │ ├── matlabjet.npy │ ├── matlabpink.npy │ ├── matlabspring.npy │ ├── matlabsummer.npy │ ├── matlabwinter.npy │ ├── nanoscope │ │ ├── ns00.npy │ │ ├── ns01.npy │ │ ├── ns02.npy │ │ ├── ns03.npy │ │ ├── ns04.npy │ │ ├── ns05.npy │ │ ├── ns06.npy │ │ ├── ns07.npy │ │ ├── ns08.npy │ │ ├── ns09.npy │ │ ├── ns10.npy │ │ ├── ns11.npy │ │ ├── ns12.npy │ │ ├── ns13.npy │ │ ├── ns14.npy │ │ ├── ns15.npy │ │ ├── ns16.npy │ │ ├── ns17.npy │ │ ├── ns18.npy │ │ ├── ns19.npy │ │ └── ns20.npy │ ├── ocean.npy │ ├── plasma.npy │ ├── rainbow.npy │ ├── ray.npy │ ├── trad-pm3d.npy │ ├── transform │ │ ├── Apricot.npy │ │ ├── Carnation.npy │ │ ├── Ether.npy │ │ ├── Greyscale_Banded.npy │ │ ├── Hot_Metal.npy │ │ ├── Lava_Waves.npy │ │ ├── Morning_Glory.npy │ │ ├── Penut_Butter_and_Jelly.npy │ │ ├── Rainbow.npy │ │ ├── Rainbow_Banded.npy │ │ ├── Rose.npy │ │ ├── Saturn.npy │ │ ├── Seismic.npy │ │ ├── Seismic_1024.npy │ │ ├── Seismic_blue.npy │ │ ├── Seismic_red.npy │ │ ├── Space.npy │ │ └── Supernova.npy │ ├── vee.npy │ ├── viol-grn.npy │ ├── viridis.npy │ └── wsxm │ │ ├── AllColors.npy │ │ ├── Autum.npy │ │ ├── BlackBody.npy │ │ ├── Blue.npy │ │ ├── BlueYellow.npy │ │ ├── Bone.npy │ │ ├── Cardiac.npy │ │ ├── China.npy │ │ ├── Cool.npy │ │ ├── Cooling.npy │ │ ├── Copper.npy │ │ ├── Dos.npy │ │ ├── Earth&Green.npy │ │ ├── Earth.npy │ │ ├── ExtraRain.npy │ │ ├── Flame.npy │ │ ├── Flow.npy │ │ ├── FracMon.npy │ │ ├── German.npy │ │ ├── Gold.npy │ │ ├── Gray.npy │ │ ├── Green.npy │ │ ├── Hot.npy │ │ ├── HotIron.npy │ │ ├── Hsv.npy │ │ ├── InvGray.npy │ │ ├── Julio.npy │ │ ├── LandScape.npy │ │ ├── Nanox.npy │ │ ├── Nih.npy │ │ ├── NihFire.npy │ │ ├── NihIce.npy │ │ ├── Pink.npy │ │ ├── PseudoColor.npy │ │ ├── Purple.npy │ │ ├── RainRamp.npy │ │ ├── Red.npy │ │ ├── Spectrum.npy │ │ ├── Spring.npy │ │ ├── Storm.npy │ │ ├── Summer.npy │ │ ├── ThermicCool.npy │ │ ├── ThermicHot.npy │ │ ├── VeryHot.npy │ │ ├── Winter.npy │ │ └── flame_light.npy ├── data.py ├── export.py ├── linecut.py ├── operations.py ├── qtplot.py ├── settings.py └── util.py ├── screenshot.png ├── setup.py ├── test.py ├── tests └── test.py └── upload.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/README.md -------------------------------------------------------------------------------- /qtplot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qtplot/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/canvas.py -------------------------------------------------------------------------------- /qtplot/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormap.py -------------------------------------------------------------------------------- /qtplot/colormaps/0greyscale.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/0greyscale.npy -------------------------------------------------------------------------------- /qtplot/colormaps/1band.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/1band.npy -------------------------------------------------------------------------------- /qtplot/colormaps/4bands.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/4bands.npy -------------------------------------------------------------------------------- /qtplot/colormaps/8bands.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/8bands.npy -------------------------------------------------------------------------------- /qtplot/colormaps/aaron.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/aaron.npy -------------------------------------------------------------------------------- /qtplot/colormaps/afm-hot.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/afm-hot.npy -------------------------------------------------------------------------------- /qtplot/colormaps/blue-green-pink.npy: -------------------------------------------------------------------------------- 1 | # CREATOR: The GIMP's PNM Filter Version 1.0 2 |  3 |   # -------------------------------------------------------------------------------- /qtplot/colormaps/color-gray-print.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/color-gray-print.npy -------------------------------------------------------------------------------- /qtplot/colormaps/hot.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/hot.npy -------------------------------------------------------------------------------- /qtplot/colormaps/inferno.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/inferno.npy -------------------------------------------------------------------------------- /qtplot/colormaps/magma.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/magma.npy -------------------------------------------------------------------------------- /qtplot/colormaps/matlabautumn.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/matlabautumn.npy -------------------------------------------------------------------------------- /qtplot/colormaps/matlabbone.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/matlabbone.npy -------------------------------------------------------------------------------- /qtplot/colormaps/matlabcool.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/matlabcool.npy -------------------------------------------------------------------------------- /qtplot/colormaps/matlabcopper.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/matlabcopper.npy -------------------------------------------------------------------------------- /qtplot/colormaps/matlabjet.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/matlabjet.npy -------------------------------------------------------------------------------- /qtplot/colormaps/matlabpink.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/matlabpink.npy -------------------------------------------------------------------------------- /qtplot/colormaps/matlabspring.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/matlabspring.npy -------------------------------------------------------------------------------- /qtplot/colormaps/matlabsummer.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/matlabsummer.npy -------------------------------------------------------------------------------- /qtplot/colormaps/matlabwinter.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/matlabwinter.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns00.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns00.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns01.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns01.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns02.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns02.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns03.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns03.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns04.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns04.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns05.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns05.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns06.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns06.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns07.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns07.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns08.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns08.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns09.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns09.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns10.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns10.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns11.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns11.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns12.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns12.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns13.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns13.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns14.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns14.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns15.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns15.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns16.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns17.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns17.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns18.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns18.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns19.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns19.npy -------------------------------------------------------------------------------- /qtplot/colormaps/nanoscope/ns20.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/nanoscope/ns20.npy -------------------------------------------------------------------------------- /qtplot/colormaps/ocean.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/ocean.npy -------------------------------------------------------------------------------- /qtplot/colormaps/plasma.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/plasma.npy -------------------------------------------------------------------------------- /qtplot/colormaps/rainbow.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/rainbow.npy -------------------------------------------------------------------------------- /qtplot/colormaps/ray.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/ray.npy -------------------------------------------------------------------------------- /qtplot/colormaps/trad-pm3d.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/trad-pm3d.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Apricot.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Apricot.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Carnation.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Carnation.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Ether.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Ether.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Greyscale_Banded.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Greyscale_Banded.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Hot_Metal.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Hot_Metal.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Lava_Waves.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Lava_Waves.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Morning_Glory.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Morning_Glory.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Penut_Butter_and_Jelly.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Penut_Butter_and_Jelly.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Rainbow.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Rainbow.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Rainbow_Banded.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Rainbow_Banded.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Rose.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Rose.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Saturn.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Saturn.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Seismic.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Seismic.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Seismic_1024.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Seismic_1024.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Seismic_blue.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Seismic_blue.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Seismic_red.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Seismic_red.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Space.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Space.npy -------------------------------------------------------------------------------- /qtplot/colormaps/transform/Supernova.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/transform/Supernova.npy -------------------------------------------------------------------------------- /qtplot/colormaps/vee.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/vee.npy -------------------------------------------------------------------------------- /qtplot/colormaps/viol-grn.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/viol-grn.npy -------------------------------------------------------------------------------- /qtplot/colormaps/viridis.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/viridis.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/AllColors.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/AllColors.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Autum.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Autum.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/BlackBody.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/BlackBody.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Blue.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Blue.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/BlueYellow.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/BlueYellow.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Bone.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Bone.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Cardiac.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Cardiac.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/China.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/China.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Cool.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Cool.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Cooling.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Cooling.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Copper.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Copper.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Dos.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Dos.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Earth&Green.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Earth&Green.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Earth.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Earth.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/ExtraRain.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/ExtraRain.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Flame.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Flame.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Flow.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Flow.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/FracMon.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/FracMon.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/German.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/German.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Gold.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Gold.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Gray.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Gray.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Green.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Green.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Hot.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Hot.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/HotIron.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/HotIron.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Hsv.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Hsv.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/InvGray.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/InvGray.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Julio.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Julio.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/LandScape.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/LandScape.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Nanox.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Nanox.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Nih.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Nih.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/NihFire.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/NihFire.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/NihIce.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/NihIce.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Pink.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Pink.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/PseudoColor.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/PseudoColor.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Purple.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Purple.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/RainRamp.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/RainRamp.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Red.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Red.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Spectrum.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Spectrum.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Spring.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Spring.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Storm.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Storm.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Summer.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Summer.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/ThermicCool.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/ThermicCool.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/ThermicHot.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/ThermicHot.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/VeryHot.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/VeryHot.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/Winter.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/Winter.npy -------------------------------------------------------------------------------- /qtplot/colormaps/wsxm/flame_light.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/colormaps/wsxm/flame_light.npy -------------------------------------------------------------------------------- /qtplot/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/data.py -------------------------------------------------------------------------------- /qtplot/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/export.py -------------------------------------------------------------------------------- /qtplot/linecut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/linecut.py -------------------------------------------------------------------------------- /qtplot/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/operations.py -------------------------------------------------------------------------------- /qtplot/qtplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/qtplot.py -------------------------------------------------------------------------------- /qtplot/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/settings.py -------------------------------------------------------------------------------- /qtplot/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/qtplot/util.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/test.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rubenknex/qtplot/HEAD/tests/test.py -------------------------------------------------------------------------------- /upload.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python setup.py sdist upload -r pypi --------------------------------------------------------------------------------