├── .gitignore ├── .gitmodules ├── .travis.yml ├── BatchRenderer ├── BatchContext.cpp ├── BatchContext.h ├── BatchRenderer.pro ├── CGLContext.cpp ├── CGLContext.h ├── GLXContext.cpp ├── GLXContext.h ├── NSContext.h ├── NSContext.mm ├── TuvokLuaScriptExec.cpp ├── TuvokLuaScriptExec.h ├── WGLContext.cpp ├── WGLContext.h ├── main.cpp └── testNSContext.mm ├── CmdLineConverter ├── CmdLineConverter.pro ├── DebugOut │ ├── HRConsoleOut.cpp │ └── HRConsoleOut.h ├── TuvokConverter.vcxproj ├── TuvokConverter.vcxproj.filters └── main.cpp ├── DemoData ├── c60.1dt ├── c60.2dt └── c60.uvf ├── Doxyfile ├── ExtractDebugInfo ├── ExtractDebugInfo.pro ├── ExtractDebugInfo.vcxproj └── main.cpp ├── IV3D.plist ├── ImageVis3D-2015.sln ├── ImageVis3D.pro ├── ImageVis3D ├── DebugOut │ ├── QTLabelOut.cpp │ ├── QTLabelOut.h │ ├── QTOut.cpp │ └── QTOut.h ├── Doxyfile ├── IO │ ├── 3rdParty │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── zip.c │ │ └── zip.h │ ├── DialogConverter.cpp │ ├── DialogConverter.h │ ├── ZipFile.cpp │ └── ZipFile.h ├── ImageVis3D.pro ├── ImageVis3D.qrc ├── ImageVis3D.vcxproj ├── ImageVis3D.vcxproj.filters ├── Resources │ ├── ImageVis3D.icns │ ├── ImageVis3D.ico │ ├── ImageVis3D.rc │ ├── bug.png │ ├── icon_128.png │ ├── icon_16.png │ ├── icon_256.png │ ├── icon_32.png │ ├── icon_512.png │ ├── icon_64.png │ ├── icon_Update.png │ ├── imagevis3d.png │ └── imagevis3dmini.png ├── StdDefines.h ├── UI │ ├── AboutDlg.cpp │ ├── AboutDlg.h │ ├── BasicSettingsDlg.cpp │ ├── BasicSettingsDlg.h │ ├── BrowseData.cpp │ ├── BrowseData.h │ ├── BugRepDlg.cpp │ ├── BugRepDlg.h │ ├── CrashDetDlg.cpp │ ├── CrashDetDlg.h │ ├── DatasetServerDialog.cpp │ ├── DatasetServerDialog.h │ ├── DebugScriptWindow.cpp │ ├── DebugScriptWindow.h │ ├── FTPDialog.cpp │ ├── FTPDialog.h │ ├── ImageVis3D.cpp │ ├── ImageVis3D.h │ ├── ImageVis3D_1DTransferFunction.cpp │ ├── ImageVis3D_2DTransferFunction.cpp │ ├── ImageVis3D_Capturing.cpp │ ├── ImageVis3D_DebugWindow.cpp │ ├── ImageVis3D_FileHandling.cpp │ ├── ImageVis3D_Help.cpp │ ├── ImageVis3D_I3M.cpp │ ├── ImageVis3D_Locking.cpp │ ├── ImageVis3D_Progress.cpp │ ├── ImageVis3D_Settings.cpp │ ├── ImageVis3D_Stereo.cpp │ ├── ImageVis3D_WindowHandling.cpp │ ├── LODDlg.cpp │ ├── LODDlg.h │ ├── MDIRenderWin.cpp │ ├── MDIRenderWin.h │ ├── MIPRotDialog.cpp │ ├── MIPRotDialog.h │ ├── MergeDlg.cpp │ ├── MergeDlg.h │ ├── MetadataDlg.cpp │ ├── MetadataDlg.h │ ├── PleaseWait.cpp │ ├── PleaseWait.h │ ├── Q1DTransferFunction.cpp │ ├── Q1DTransferFunction.h │ ├── Q2DTransferFunction.cpp │ ├── Q2DTransferFunction.h │ ├── QDataRadioButton.cpp │ ├── QDataRadioButton.h │ ├── QLightPreview.cpp │ ├── QLightPreview.h │ ├── QTransferFunction.cpp │ ├── QTransferFunction.h │ ├── RAWDialog.cpp │ ├── RAWDialog.h │ ├── RenderWindow.cpp │ ├── RenderWindow.h │ ├── RenderWindowDX.cpp │ ├── RenderWindowDX.h │ ├── RenderWindowGL.cpp │ ├── RenderWindowGL.h │ ├── ScaleAndBiasDlg.cpp │ ├── ScaleAndBiasDlg.h │ ├── SettingsDlg.cpp │ ├── SettingsDlg.h │ ├── UI │ │ ├── About.ui │ │ ├── BrowseData.ui │ │ ├── BugRepDlg.ui │ │ ├── CrashDetDlg.ui │ │ ├── FTPDialog.ui │ │ ├── ImageVis3D.ui │ │ ├── LODDlg.ui │ │ ├── MIPRotDialog.ui │ │ ├── MergeDlg.ui │ │ ├── Metadata.ui │ │ ├── PleaseWait.ui │ │ ├── RAWDialog.ui │ │ ├── ScaleAndBiasDlg.ui │ │ ├── SettingsDlg.ui │ │ ├── URLDlg.ui │ │ └── Welcome.ui │ ├── URLDlg.cpp │ ├── URLDlg.h │ ├── Welcome.cpp │ └── Welcome.h └── main.cpp ├── LICENSE ├── LuaScripts ├── BatchRenderer.lua └── FlyThroughAnimator.lua ├── README.md ├── Scripts ├── Linux-StaticQt.sh ├── Mac-DynamicQt-Cocoa.sh ├── Win-StaticQt-4.8.bat ├── WinVM.bat ├── argon.sh ├── build-4.6.0.bat ├── deb-vm.sh ├── debian.sh ├── dl.ps1 ├── download-test-data.sh ├── gcc-dev-cfg.sh ├── installer │ ├── 32-debug.iss │ ├── 32.iss │ ├── 64-debug.iss │ └── 64.iss ├── iv3d-arch.sh ├── mk_app.sh ├── mk_tarball.sh ├── neon.sh ├── nightly.sh ├── oneshot-debug.bat ├── oneshot-debug.sh ├── oneshot-release.bat ├── oneshot-release.sh ├── revision.py ├── util.sh ├── version.py └── vg-nightly.sh ├── StandaloneTuvok ├── 3rdParty │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzio.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zconf.in.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── CmdRenderer.cpp ├── GLContext.cpp ├── GLContext.h ├── SmallImage.cpp ├── SmallImage.h ├── StandaloneTuvok.sln ├── StandaloneTuvok.vcxproj ├── StandaloneTuvok.vcxproj.filters └── readme.txt ├── UVFReader ├── .gitignore ├── BlockInfo.h ├── DataSource.h ├── TuvokReader.vcxproj ├── TuvokReader.vcxproj.filters ├── UVFReader.pro └── main.cpp ├── doc ├── add-converter.adoc ├── expressions.adoc ├── helium.py ├── imagevis3d.1 ├── import.adoc └── uvfconvert.1 ├── notdebian ├── README.Debian ├── changelog ├── compat ├── control ├── copyright ├── dirs ├── imagevis3d.substvars ├── menu ├── rules └── watch ├── pre-commit.sh ├── rpm └── imagevis3d.spec ├── ui_files.props ├── ui_files.rules ├── ui_files.targets └── ui_files.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/.travis.yml -------------------------------------------------------------------------------- /BatchRenderer/BatchContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/BatchContext.cpp -------------------------------------------------------------------------------- /BatchRenderer/BatchContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/BatchContext.h -------------------------------------------------------------------------------- /BatchRenderer/BatchRenderer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/BatchRenderer.pro -------------------------------------------------------------------------------- /BatchRenderer/CGLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/CGLContext.cpp -------------------------------------------------------------------------------- /BatchRenderer/CGLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/CGLContext.h -------------------------------------------------------------------------------- /BatchRenderer/GLXContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/GLXContext.cpp -------------------------------------------------------------------------------- /BatchRenderer/GLXContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/GLXContext.h -------------------------------------------------------------------------------- /BatchRenderer/NSContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/NSContext.h -------------------------------------------------------------------------------- /BatchRenderer/NSContext.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/NSContext.mm -------------------------------------------------------------------------------- /BatchRenderer/TuvokLuaScriptExec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/TuvokLuaScriptExec.cpp -------------------------------------------------------------------------------- /BatchRenderer/TuvokLuaScriptExec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/TuvokLuaScriptExec.h -------------------------------------------------------------------------------- /BatchRenderer/WGLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/WGLContext.cpp -------------------------------------------------------------------------------- /BatchRenderer/WGLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/WGLContext.h -------------------------------------------------------------------------------- /BatchRenderer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/main.cpp -------------------------------------------------------------------------------- /BatchRenderer/testNSContext.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/BatchRenderer/testNSContext.mm -------------------------------------------------------------------------------- /CmdLineConverter/CmdLineConverter.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/CmdLineConverter/CmdLineConverter.pro -------------------------------------------------------------------------------- /CmdLineConverter/DebugOut/HRConsoleOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/CmdLineConverter/DebugOut/HRConsoleOut.cpp -------------------------------------------------------------------------------- /CmdLineConverter/DebugOut/HRConsoleOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/CmdLineConverter/DebugOut/HRConsoleOut.h -------------------------------------------------------------------------------- /CmdLineConverter/TuvokConverter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/CmdLineConverter/TuvokConverter.vcxproj -------------------------------------------------------------------------------- /CmdLineConverter/TuvokConverter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/CmdLineConverter/TuvokConverter.vcxproj.filters -------------------------------------------------------------------------------- /CmdLineConverter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/CmdLineConverter/main.cpp -------------------------------------------------------------------------------- /DemoData/c60.1dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/DemoData/c60.1dt -------------------------------------------------------------------------------- /DemoData/c60.2dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/DemoData/c60.2dt -------------------------------------------------------------------------------- /DemoData/c60.uvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/DemoData/c60.uvf -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Doxyfile -------------------------------------------------------------------------------- /ExtractDebugInfo/ExtractDebugInfo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ExtractDebugInfo/ExtractDebugInfo.pro -------------------------------------------------------------------------------- /ExtractDebugInfo/ExtractDebugInfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ExtractDebugInfo/ExtractDebugInfo.vcxproj -------------------------------------------------------------------------------- /ExtractDebugInfo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ExtractDebugInfo/main.cpp -------------------------------------------------------------------------------- /IV3D.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/IV3D.plist -------------------------------------------------------------------------------- /ImageVis3D-2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D-2015.sln -------------------------------------------------------------------------------- /ImageVis3D.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D.pro -------------------------------------------------------------------------------- /ImageVis3D/DebugOut/QTLabelOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/DebugOut/QTLabelOut.cpp -------------------------------------------------------------------------------- /ImageVis3D/DebugOut/QTLabelOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/DebugOut/QTLabelOut.h -------------------------------------------------------------------------------- /ImageVis3D/DebugOut/QTOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/DebugOut/QTOut.cpp -------------------------------------------------------------------------------- /ImageVis3D/DebugOut/QTOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/DebugOut/QTOut.h -------------------------------------------------------------------------------- /ImageVis3D/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Doxyfile -------------------------------------------------------------------------------- /ImageVis3D/IO/3rdParty/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/IO/3rdParty/crypt.h -------------------------------------------------------------------------------- /ImageVis3D/IO/3rdParty/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/IO/3rdParty/ioapi.c -------------------------------------------------------------------------------- /ImageVis3D/IO/3rdParty/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/IO/3rdParty/ioapi.h -------------------------------------------------------------------------------- /ImageVis3D/IO/3rdParty/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/IO/3rdParty/zip.c -------------------------------------------------------------------------------- /ImageVis3D/IO/3rdParty/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/IO/3rdParty/zip.h -------------------------------------------------------------------------------- /ImageVis3D/IO/DialogConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/IO/DialogConverter.cpp -------------------------------------------------------------------------------- /ImageVis3D/IO/DialogConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/IO/DialogConverter.h -------------------------------------------------------------------------------- /ImageVis3D/IO/ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/IO/ZipFile.cpp -------------------------------------------------------------------------------- /ImageVis3D/IO/ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/IO/ZipFile.h -------------------------------------------------------------------------------- /ImageVis3D/ImageVis3D.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/ImageVis3D.pro -------------------------------------------------------------------------------- /ImageVis3D/ImageVis3D.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/ImageVis3D.qrc -------------------------------------------------------------------------------- /ImageVis3D/ImageVis3D.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/ImageVis3D.vcxproj -------------------------------------------------------------------------------- /ImageVis3D/ImageVis3D.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/ImageVis3D.vcxproj.filters -------------------------------------------------------------------------------- /ImageVis3D/Resources/ImageVis3D.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/ImageVis3D.icns -------------------------------------------------------------------------------- /ImageVis3D/Resources/ImageVis3D.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/ImageVis3D.ico -------------------------------------------------------------------------------- /ImageVis3D/Resources/ImageVis3D.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/ImageVis3D.rc -------------------------------------------------------------------------------- /ImageVis3D/Resources/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/bug.png -------------------------------------------------------------------------------- /ImageVis3D/Resources/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/icon_128.png -------------------------------------------------------------------------------- /ImageVis3D/Resources/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/icon_16.png -------------------------------------------------------------------------------- /ImageVis3D/Resources/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/icon_256.png -------------------------------------------------------------------------------- /ImageVis3D/Resources/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/icon_32.png -------------------------------------------------------------------------------- /ImageVis3D/Resources/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/icon_512.png -------------------------------------------------------------------------------- /ImageVis3D/Resources/icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/icon_64.png -------------------------------------------------------------------------------- /ImageVis3D/Resources/icon_Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/icon_Update.png -------------------------------------------------------------------------------- /ImageVis3D/Resources/imagevis3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/imagevis3d.png -------------------------------------------------------------------------------- /ImageVis3D/Resources/imagevis3dmini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/Resources/imagevis3dmini.png -------------------------------------------------------------------------------- /ImageVis3D/StdDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/StdDefines.h -------------------------------------------------------------------------------- /ImageVis3D/UI/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/AboutDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/AboutDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/BasicSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/BasicSettingsDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/BasicSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/BasicSettingsDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/BrowseData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/BrowseData.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/BrowseData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/BrowseData.h -------------------------------------------------------------------------------- /ImageVis3D/UI/BugRepDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/BugRepDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/BugRepDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/BugRepDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/CrashDetDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/CrashDetDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/CrashDetDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/CrashDetDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/DatasetServerDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/DatasetServerDialog.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/DatasetServerDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/DatasetServerDialog.h -------------------------------------------------------------------------------- /ImageVis3D/UI/DebugScriptWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/DebugScriptWindow.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/DebugScriptWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/DebugScriptWindow.h -------------------------------------------------------------------------------- /ImageVis3D/UI/FTPDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/FTPDialog.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/FTPDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/FTPDialog.h -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D.h -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_1DTransferFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_1DTransferFunction.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_2DTransferFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_2DTransferFunction.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_Capturing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_Capturing.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_DebugWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_DebugWindow.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_FileHandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_FileHandling.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_Help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_Help.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_I3M.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_I3M.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_Locking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_Locking.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_Progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_Progress.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_Settings.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_Stereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_Stereo.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ImageVis3D_WindowHandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ImageVis3D_WindowHandling.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/LODDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/LODDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/LODDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/LODDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/MDIRenderWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/MDIRenderWin.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/MDIRenderWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/MDIRenderWin.h -------------------------------------------------------------------------------- /ImageVis3D/UI/MIPRotDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/MIPRotDialog.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/MIPRotDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/MIPRotDialog.h -------------------------------------------------------------------------------- /ImageVis3D/UI/MergeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/MergeDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/MergeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/MergeDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/MetadataDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/MetadataDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/MetadataDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/MetadataDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/PleaseWait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/PleaseWait.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/PleaseWait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/PleaseWait.h -------------------------------------------------------------------------------- /ImageVis3D/UI/Q1DTransferFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/Q1DTransferFunction.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/Q1DTransferFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/Q1DTransferFunction.h -------------------------------------------------------------------------------- /ImageVis3D/UI/Q2DTransferFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/Q2DTransferFunction.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/Q2DTransferFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/Q2DTransferFunction.h -------------------------------------------------------------------------------- /ImageVis3D/UI/QDataRadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/QDataRadioButton.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/QDataRadioButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/QDataRadioButton.h -------------------------------------------------------------------------------- /ImageVis3D/UI/QLightPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/QLightPreview.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/QLightPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/QLightPreview.h -------------------------------------------------------------------------------- /ImageVis3D/UI/QTransferFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/QTransferFunction.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/QTransferFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/QTransferFunction.h -------------------------------------------------------------------------------- /ImageVis3D/UI/RAWDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/RAWDialog.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/RAWDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/RAWDialog.h -------------------------------------------------------------------------------- /ImageVis3D/UI/RenderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/RenderWindow.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/RenderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/RenderWindow.h -------------------------------------------------------------------------------- /ImageVis3D/UI/RenderWindowDX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/RenderWindowDX.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/RenderWindowDX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/RenderWindowDX.h -------------------------------------------------------------------------------- /ImageVis3D/UI/RenderWindowGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/RenderWindowGL.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/RenderWindowGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/RenderWindowGL.h -------------------------------------------------------------------------------- /ImageVis3D/UI/ScaleAndBiasDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ScaleAndBiasDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/ScaleAndBiasDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/ScaleAndBiasDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/SettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/SettingsDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/SettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/SettingsDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/About.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/About.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/BrowseData.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/BrowseData.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/BugRepDlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/BugRepDlg.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/CrashDetDlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/CrashDetDlg.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/FTPDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/FTPDialog.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/ImageVis3D.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/ImageVis3D.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/LODDlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/LODDlg.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/MIPRotDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/MIPRotDialog.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/MergeDlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/MergeDlg.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/Metadata.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/Metadata.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/PleaseWait.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/PleaseWait.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/RAWDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/RAWDialog.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/ScaleAndBiasDlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/ScaleAndBiasDlg.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/SettingsDlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/SettingsDlg.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/URLDlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/URLDlg.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/UI/Welcome.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/UI/Welcome.ui -------------------------------------------------------------------------------- /ImageVis3D/UI/URLDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/URLDlg.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/URLDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/URLDlg.h -------------------------------------------------------------------------------- /ImageVis3D/UI/Welcome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/Welcome.cpp -------------------------------------------------------------------------------- /ImageVis3D/UI/Welcome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/UI/Welcome.h -------------------------------------------------------------------------------- /ImageVis3D/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ImageVis3D/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/LICENSE -------------------------------------------------------------------------------- /LuaScripts/BatchRenderer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/LuaScripts/BatchRenderer.lua -------------------------------------------------------------------------------- /LuaScripts/FlyThroughAnimator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/LuaScripts/FlyThroughAnimator.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Linux-StaticQt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/Linux-StaticQt.sh -------------------------------------------------------------------------------- /Scripts/Mac-DynamicQt-Cocoa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/Mac-DynamicQt-Cocoa.sh -------------------------------------------------------------------------------- /Scripts/Win-StaticQt-4.8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/Win-StaticQt-4.8.bat -------------------------------------------------------------------------------- /Scripts/WinVM.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/WinVM.bat -------------------------------------------------------------------------------- /Scripts/argon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/argon.sh -------------------------------------------------------------------------------- /Scripts/build-4.6.0.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/build-4.6.0.bat -------------------------------------------------------------------------------- /Scripts/deb-vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/deb-vm.sh -------------------------------------------------------------------------------- /Scripts/debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/debian.sh -------------------------------------------------------------------------------- /Scripts/dl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/dl.ps1 -------------------------------------------------------------------------------- /Scripts/download-test-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/download-test-data.sh -------------------------------------------------------------------------------- /Scripts/gcc-dev-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/gcc-dev-cfg.sh -------------------------------------------------------------------------------- /Scripts/installer/32-debug.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/installer/32-debug.iss -------------------------------------------------------------------------------- /Scripts/installer/32.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/installer/32.iss -------------------------------------------------------------------------------- /Scripts/installer/64-debug.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/installer/64-debug.iss -------------------------------------------------------------------------------- /Scripts/installer/64.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/installer/64.iss -------------------------------------------------------------------------------- /Scripts/iv3d-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/iv3d-arch.sh -------------------------------------------------------------------------------- /Scripts/mk_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/mk_app.sh -------------------------------------------------------------------------------- /Scripts/mk_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/mk_tarball.sh -------------------------------------------------------------------------------- /Scripts/neon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/neon.sh -------------------------------------------------------------------------------- /Scripts/nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/nightly.sh -------------------------------------------------------------------------------- /Scripts/oneshot-debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/oneshot-debug.bat -------------------------------------------------------------------------------- /Scripts/oneshot-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/oneshot-debug.sh -------------------------------------------------------------------------------- /Scripts/oneshot-release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/oneshot-release.bat -------------------------------------------------------------------------------- /Scripts/oneshot-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/oneshot-release.sh -------------------------------------------------------------------------------- /Scripts/revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/revision.py -------------------------------------------------------------------------------- /Scripts/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/util.sh -------------------------------------------------------------------------------- /Scripts/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/version.py -------------------------------------------------------------------------------- /Scripts/vg-nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/Scripts/vg-nightly.sh -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/adler32.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/compress.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/crc32.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/crc32.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/deflate.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/deflate.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/gzio.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/infback.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/inffast.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/inffast.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/inffixed.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/inflate.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/inflate.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/inftrees.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/inftrees.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/trees.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/trees.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/uncompr.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/zconf.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/zconf.in.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/zlib.h -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/zutil.c -------------------------------------------------------------------------------- /StandaloneTuvok/3rdParty/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/3rdParty/zutil.h -------------------------------------------------------------------------------- /StandaloneTuvok/CmdRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/CmdRenderer.cpp -------------------------------------------------------------------------------- /StandaloneTuvok/GLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/GLContext.cpp -------------------------------------------------------------------------------- /StandaloneTuvok/GLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/GLContext.h -------------------------------------------------------------------------------- /StandaloneTuvok/SmallImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/SmallImage.cpp -------------------------------------------------------------------------------- /StandaloneTuvok/SmallImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/SmallImage.h -------------------------------------------------------------------------------- /StandaloneTuvok/StandaloneTuvok.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/StandaloneTuvok.sln -------------------------------------------------------------------------------- /StandaloneTuvok/StandaloneTuvok.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/StandaloneTuvok.vcxproj -------------------------------------------------------------------------------- /StandaloneTuvok/StandaloneTuvok.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/StandaloneTuvok.vcxproj.filters -------------------------------------------------------------------------------- /StandaloneTuvok/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/StandaloneTuvok/readme.txt -------------------------------------------------------------------------------- /UVFReader/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /UVFReader/BlockInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/UVFReader/BlockInfo.h -------------------------------------------------------------------------------- /UVFReader/DataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/UVFReader/DataSource.h -------------------------------------------------------------------------------- /UVFReader/TuvokReader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/UVFReader/TuvokReader.vcxproj -------------------------------------------------------------------------------- /UVFReader/TuvokReader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/UVFReader/TuvokReader.vcxproj.filters -------------------------------------------------------------------------------- /UVFReader/UVFReader.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/UVFReader/UVFReader.pro -------------------------------------------------------------------------------- /UVFReader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/UVFReader/main.cpp -------------------------------------------------------------------------------- /doc/add-converter.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/doc/add-converter.adoc -------------------------------------------------------------------------------- /doc/expressions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/doc/expressions.adoc -------------------------------------------------------------------------------- /doc/helium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/doc/helium.py -------------------------------------------------------------------------------- /doc/imagevis3d.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/doc/imagevis3d.1 -------------------------------------------------------------------------------- /doc/import.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/doc/import.adoc -------------------------------------------------------------------------------- /doc/uvfconvert.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/doc/uvfconvert.1 -------------------------------------------------------------------------------- /notdebian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/notdebian/README.Debian -------------------------------------------------------------------------------- /notdebian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/notdebian/changelog -------------------------------------------------------------------------------- /notdebian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /notdebian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/notdebian/control -------------------------------------------------------------------------------- /notdebian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/notdebian/copyright -------------------------------------------------------------------------------- /notdebian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /notdebian/imagevis3d.substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/notdebian/imagevis3d.substvars -------------------------------------------------------------------------------- /notdebian/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/notdebian/menu -------------------------------------------------------------------------------- /notdebian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/notdebian/rules -------------------------------------------------------------------------------- /notdebian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/notdebian/watch -------------------------------------------------------------------------------- /pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/pre-commit.sh -------------------------------------------------------------------------------- /rpm/imagevis3d.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/rpm/imagevis3d.spec -------------------------------------------------------------------------------- /ui_files.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ui_files.props -------------------------------------------------------------------------------- /ui_files.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ui_files.rules -------------------------------------------------------------------------------- /ui_files.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ui_files.targets -------------------------------------------------------------------------------- /ui_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SCIInstitute/ImageVis3D/HEAD/ui_files.xml --------------------------------------------------------------------------------