├── .clang-format ├── .gitignore ├── Apps ├── Apps.cmake ├── CMakeLists.txt ├── CRIMSON │ ├── CMakeLists.txt │ ├── CRIMSON.cpp │ ├── CRIMSON.ini │ ├── CRIMSON.vcxproj.user.in │ ├── JenkinsEnv.properties.in │ ├── icons │ │ ├── CRIMSON.aps │ │ ├── CRIMSON.rc │ │ ├── icon.icns │ │ ├── icon.ico │ │ └── icon.png │ ├── splashscreen.ai │ ├── splashscreen.png │ ├── splashscreen.qrc │ ├── splashscreen_old.ai │ ├── splashscreen_old.png │ ├── startCRIMSON.bat.in │ └── target_libraries.cmake └── NetlistEditor │ ├── AUTHOR │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── THANKS │ ├── TODO │ ├── cmake │ ├── DS_Store │ ├── MacOSXBundle_Info.plist.in │ ├── MacOSXBundle_fixup_bundle.cmake.in │ ├── MacOSXBundle_locversion.plist.in │ ├── Modules │ │ └── FindQwt5.cmake │ └── cmake_uninstall.cmake.in │ ├── config.h.in │ ├── doxy.cfg │ └── src │ ├── CMakeLists.txt │ ├── boost-sapecng │ ├── edge_properties.hpp │ ├── grimbleby.hpp │ └── mrt.hpp │ ├── config.h │ ├── exception │ └── sapecngexception.h │ ├── functor │ ├── README.rpoly │ ├── functor.hpp │ ├── rpoly-adapter.cpp │ └── rpoly.cpp │ ├── gui │ ├── CRIMSONBCT.cpp │ ├── CRIMSONBCT.qrc │ ├── CRIMSONBCT.rc │ ├── configdialog │ │ ├── configdialog.cpp │ │ ├── configdialog.h │ │ ├── configpage.cpp │ │ └── configpage.h │ ├── delegate.cpp │ ├── delegate.h │ ├── editor │ │ ├── PrescribedFlowComponentMetadata.cpp │ │ ├── PrescribedFlowComponentMetadata.h │ │ ├── component.cpp │ │ ├── component.h │ │ ├── graphicsnode.cpp │ │ ├── graphicsnode.h │ │ ├── inode.h │ │ ├── item.cpp │ │ ├── item.h │ │ ├── label.cpp │ │ ├── label.h │ │ ├── metacircuit_thread.hpp │ │ ├── propertytextitem.hpp │ │ ├── schematiceditor.cpp │ │ ├── schematiceditor.h │ │ ├── schematicscene.cpp │ │ ├── schematicscene.h │ │ ├── schematicsceneparser.cpp │ │ ├── schematicsceneparser.h │ │ ├── schematicview.h │ │ ├── undoredocommand.cpp │ │ ├── undoredocommand.h │ │ ├── vpiface.h │ │ ├── wire.cpp │ │ └── wire.h │ ├── extendedmdiarea.h │ ├── functor │ │ └── functor_traits.hpp │ ├── images │ │ ├── CRIMSONBoundaryConditionToolboxLogo.png │ │ ├── CRIMSONBoundaryConditionToolboxLogo.svg │ │ ├── CRIMSONandroid2.svg │ │ ├── bin.png │ │ ├── bringfront.png │ │ ├── configuration.png │ │ ├── copy.png │ │ ├── cross.png │ │ ├── cursor.png │ │ ├── cut.png │ │ ├── fit.png │ │ ├── font.png │ │ ├── grid.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── info.png │ │ ├── label.png │ │ ├── license.png │ │ ├── mirror.png │ │ ├── new.png │ │ ├── newcmp.png │ │ ├── node.png │ │ ├── open.png │ │ ├── pack.png │ │ ├── paste.png │ │ ├── print.png │ │ ├── qsapecng-128x128.png │ │ ├── qsapecng-16x16.png │ │ ├── qsapecng-16x16.xpm │ │ ├── qsapecng-24x24.png │ │ ├── qsapecng-256x256.png │ │ ├── qsapecng-32x32.png │ │ ├── qsapecng-32x32.xpm │ │ ├── qsapecng-48x48.png │ │ ├── qsapecng-64x64.png │ │ ├── qsapecng-ico.ico │ │ ├── qsapecng-splash-ng.png │ │ ├── qsapecng-splash.png │ │ ├── qsapecng.desktop │ │ ├── qsapecng.icns │ │ ├── qsapecng.png │ │ ├── qsapecng.svg │ │ ├── qt-logo.png │ │ ├── redo.png │ │ ├── resolve.png │ │ ├── rotate.png │ │ ├── save.png │ │ ├── screenshots │ │ │ ├── ss-0.png │ │ │ ├── ss-1.png │ │ │ ├── ss-2.png │ │ │ ├── ss-3.png │ │ │ └── ss-4.png │ │ ├── sendback.png │ │ ├── symbols │ │ │ ├── ammeter.png │ │ │ ├── ammeter.svg │ │ │ ├── capacitor.png │ │ │ ├── capacitor.svg │ │ │ ├── cccs.png │ │ │ ├── cccs.svg │ │ │ ├── ccvs.png │ │ │ ├── ccvs.svg │ │ │ ├── current.png │ │ │ ├── current.svg │ │ │ ├── diode.png │ │ │ ├── diode.svg │ │ │ ├── ground.png │ │ │ ├── ground.svg │ │ │ ├── inductor.png │ │ │ ├── inductor.svg │ │ │ ├── mutualinductance.png │ │ │ ├── mutualinductance.svg │ │ │ ├── opampl.png │ │ │ ├── opampl.svg │ │ │ ├── out.png │ │ │ ├── out.svg │ │ │ ├── port.png │ │ │ ├── port.svg │ │ │ ├── prescribedPressureNode.png │ │ │ ├── prescribedPressureNode.svg │ │ │ ├── resistor.png │ │ │ ├── resistor.svg │ │ │ ├── symbols.png │ │ │ ├── symbols.svg │ │ │ ├── threeDNode.png │ │ │ ├── threeDNode.svg │ │ │ ├── transformer.png │ │ │ ├── transformer.svg │ │ │ ├── userdef.png │ │ │ ├── userdef.svg │ │ │ ├── vccs.png │ │ │ ├── vccs.svg │ │ │ ├── vcvs.png │ │ │ ├── vcvs.svg │ │ │ ├── voltage.png │ │ │ ├── voltage.svg │ │ │ ├── voltmeter.png │ │ │ ├── voltmeter.svg │ │ │ ├── volumeTrackingPressureChamber.png │ │ │ ├── volumeTrackingPressureChamber.svg │ │ │ ├── wire.png │ │ │ ├── wire.svg │ │ │ ├── wirecross.png │ │ │ ├── wirecross.svg │ │ │ ├── xccs.svg │ │ │ └── xcvs.svg │ │ ├── threeDNode.png │ │ ├── undo.png │ │ ├── wave.png │ │ ├── zoomin.png │ │ ├── zoomnormal.png │ │ └── zoomout.png │ ├── qlogger.h │ ├── qsapecng.cpp │ ├── qsapecng.qrc │ ├── qsapecng.rc │ ├── qsapecngwindow.cpp │ ├── qsapecngwindow.h │ ├── qtsolutions │ │ └── qtpropertyeditor │ │ │ ├── QtAbstractEditorFactoryBase │ │ │ ├── QtAbstractPropertyBrowser │ │ │ ├── QtAbstractPropertyManager │ │ │ ├── QtBoolPropertyManager │ │ │ ├── QtBrowserItem │ │ │ ├── QtButtonPropertyBrowser │ │ │ ├── QtCharEditorFactory │ │ │ ├── QtCharPropertyManager │ │ │ ├── QtCheckBoxFactory │ │ │ ├── QtColorEditorFactory │ │ │ ├── QtColorPropertyManager │ │ │ ├── QtCursorEditorFactory │ │ │ ├── QtCursorPropertyManager │ │ │ ├── QtDateEditFactory │ │ │ ├── QtDatePropertyManager │ │ │ ├── QtDateTimeEditFactory │ │ │ ├── QtDateTimePropertyManager │ │ │ ├── QtDoublePropertyManager │ │ │ ├── QtDoubleSpinBoxFactory │ │ │ ├── QtEnumEditorFactory │ │ │ ├── QtEnumPropertyManager │ │ │ ├── QtFlagPropertyManager │ │ │ ├── QtFontEditorFactory │ │ │ ├── QtFontPropertyManager │ │ │ ├── QtGroupBoxPropertyBrowser │ │ │ ├── QtGroupPropertyManager │ │ │ ├── QtIntPropertyManager │ │ │ ├── QtKeySequenceEditorFactory │ │ │ ├── QtKeySequencePropertyManager │ │ │ ├── QtLineEditFactory │ │ │ ├── QtLocalePropertyManager │ │ │ ├── QtPointFPropertyManager │ │ │ ├── QtPointPropertyManager │ │ │ ├── QtProperty │ │ │ ├── QtRectFPropertyManager │ │ │ ├── QtRectPropertyManager │ │ │ ├── QtScrollBarFactory │ │ │ ├── QtSizeFPropertyManager │ │ │ ├── QtSizePolicyPropertyManager │ │ │ ├── QtSizePropertyManager │ │ │ ├── QtSliderFactory │ │ │ ├── QtSpinBoxFactory │ │ │ ├── QtStringPropertyManager │ │ │ ├── QtTimeEditFactory │ │ │ ├── QtTimePropertyManager │ │ │ ├── QtTreePropertyBrowser │ │ │ ├── QtVariantEditorFactory │ │ │ ├── QtVariantProperty │ │ │ ├── QtVariantPropertyManager │ │ │ ├── images │ │ │ ├── cursor-arrow.png │ │ │ ├── cursor-busy.png │ │ │ ├── cursor-closedhand.png │ │ │ ├── cursor-cross.png │ │ │ ├── cursor-forbidden.png │ │ │ ├── cursor-hand.png │ │ │ ├── cursor-hsplit.png │ │ │ ├── cursor-ibeam.png │ │ │ ├── cursor-openhand.png │ │ │ ├── cursor-sizeall.png │ │ │ ├── cursor-sizeb.png │ │ │ ├── cursor-sizef.png │ │ │ ├── cursor-sizeh.png │ │ │ ├── cursor-sizev.png │ │ │ ├── cursor-uparrow.png │ │ │ ├── cursor-vsplit.png │ │ │ ├── cursor-wait.png │ │ │ └── cursor-whatsthis.png │ │ │ ├── qtbuttonpropertybrowser.cpp │ │ │ ├── qtbuttonpropertybrowser.h │ │ │ ├── qteditorfactory.cpp │ │ │ ├── qteditorfactory.h │ │ │ ├── qtgroupboxpropertybrowser.cpp │ │ │ ├── qtgroupboxpropertybrowser.h │ │ │ ├── qtpropertybrowser.cmake │ │ │ ├── qtpropertybrowser.cpp │ │ │ ├── qtpropertybrowser.h │ │ │ ├── qtpropertybrowser.pri │ │ │ ├── qtpropertybrowser.qrc │ │ │ ├── qtpropertybrowserutils.cpp │ │ │ ├── qtpropertybrowserutils_p.h │ │ │ ├── qtpropertymanager.cpp │ │ │ ├── qtpropertymanager.h │ │ │ ├── qttreepropertybrowser.cpp │ │ │ ├── qttreepropertybrowser.h │ │ │ ├── qtvariantproperty.cpp │ │ │ └── qtvariantproperty.h │ ├── settings.cpp │ ├── settings.h │ ├── sidebarmodel.cpp │ ├── sidebarmodel.h │ ├── sidebarview.cpp │ ├── sidebarview.h │ └── workplane │ │ ├── workplane.cpp │ │ └── workplane.h │ ├── images │ ├── CRIMSONBoundaryConditionToolboxLogo.png │ ├── sapecng-16x16.png │ ├── sapecng-32x32.png │ ├── sapecng-64x64.png │ ├── sapecng-splash.png │ ├── sapecng.ico │ └── sapecng.svg │ ├── logger │ ├── logger.cpp │ ├── logger.h │ └── logpolicy.h │ ├── model │ ├── circuit.cpp │ ├── circuit.h │ ├── graph.h │ ├── metacircuit.cpp │ └── metacircuit.h │ ├── parser │ ├── crc_circuit.cpp │ ├── crc_circuit.h │ ├── ir_circuit.cpp │ ├── ir_circuit.h │ ├── parser.h │ └── parser_factory.h │ ├── stuff.dox │ └── utility │ ├── boilerplateScripts.h │ ├── qsapecngUtility.cpp │ ├── qsapecngUtility.h │ ├── strings.cpp │ └── strings.h ├── CMake ├── CRIMSON.vcxproj.user.in ├── CTestCustom.cmake.in ├── DeployQt5.cmake ├── FindEigen3.cmake ├── FindFFTW.cmake ├── FindGSL.cmake ├── FindMach7.cmake ├── FindOCC.cmake ├── FindQtPropertyBrowser.cmake ├── FindWM5.cmake ├── MacroEmptyExternalProject.cmake ├── PackageDepends │ ├── MITK_Eigen3_Config.cmake │ ├── MITK_FFTW_Config.cmake │ ├── MITK_GSL_Config.cmake │ ├── MITK_Mach7_Config.cmake │ ├── MITK_OCC_Config.cmake │ ├── MITK_QtPropertyBrowser_Config.cmake │ └── MITK_WM5_Config.cmake ├── crimsonFunctionConfigureVisualStudioUserProjectFile.cmake ├── crimsonFunctionCreateBlueBerryApplication.cmake └── crimsonFunctionExternalPythonBuildStep.cmake ├── CMakeExternals ├── BuildOneConfiguration.cmake ├── CMakeLists.txt ├── GSL.cmake ├── MITK.cmake ├── OCC.cmake ├── OCC_6.9.1.patch ├── PythonModules.cmake ├── QtPropertyBrowser.cmake ├── TBB.cmake ├── WM5.cmake ├── flowsolver.cmake ├── freetype.cmake ├── freetype_win_dll.patch ├── parse.cmake └── presolver.cmake ├── CMakeLists.txt ├── Documentation ├── .gitattributes ├── BuildConfiguration.md ├── GuidesFromPlosCompBioPaper │ ├── ExampleCaseA │ │ ├── DataFiles │ │ │ ├── Solid_model.stl │ │ │ └── steady.flow │ │ └── ExampleA-Meshing-BC-Simulation-visualisation-refinement.pdf │ ├── ExampleCaseB │ │ ├── DataFiles │ │ │ ├── PC-MRI_Images │ │ │ │ ├── Magnitude │ │ │ │ │ ├── i1615852.MRDC.1 │ │ │ │ │ ├── i1615854.MRDC.3 │ │ │ │ │ ├── i1615857.MRDC.5 │ │ │ │ │ ├── i1615859.MRDC.6 │ │ │ │ │ ├── i1615860.MRDC.11 │ │ │ │ │ ├── i1615861.MRDC.19 │ │ │ │ │ ├── i1615862.MRDC.9 │ │ │ │ │ ├── i1615863.MRDC.12 │ │ │ │ │ ├── i1615864.MRDC.4 │ │ │ │ │ ├── i1615866.MRDC.16 │ │ │ │ │ ├── i1615867.MRDC.18 │ │ │ │ │ ├── i1615868.MRDC.14 │ │ │ │ │ ├── i1615870.MRDC.20 │ │ │ │ │ ├── i1615871.MRDC.15 │ │ │ │ │ ├── i1615872.MRDC.10 │ │ │ │ │ ├── i1615873.MRDC.2 │ │ │ │ │ ├── i1615874.MRDC.8 │ │ │ │ │ ├── i1615875.MRDC.17 │ │ │ │ │ ├── i1615876.MRDC.13 │ │ │ │ │ └── i1615877.MRDC.7 │ │ │ │ └── Phase │ │ │ │ │ ├── i1615838.MRDC.1 │ │ │ │ │ ├── i1615839.MRDC.3 │ │ │ │ │ ├── i1615840.MRDC.5 │ │ │ │ │ ├── i1615841.MRDC.6 │ │ │ │ │ ├── i1615842.MRDC.9 │ │ │ │ │ ├── i1615843.MRDC.4 │ │ │ │ │ ├── i1615844.MRDC.11 │ │ │ │ │ ├── i1615845.MRDC.12 │ │ │ │ │ ├── i1615846.MRDC.14 │ │ │ │ │ ├── i1615847.MRDC.18 │ │ │ │ │ ├── i1615848.MRDC.19 │ │ │ │ │ ├── i1615849.MRDC.16 │ │ │ │ │ ├── i1615850.MRDC.15 │ │ │ │ │ ├── i1615851.MRDC.20 │ │ │ │ │ ├── i1615853.MRDC.8 │ │ │ │ │ ├── i1615855.MRDC.10 │ │ │ │ │ ├── i1615856.MRDC.2 │ │ │ │ │ ├── i1615858.MRDC.17 │ │ │ │ │ ├── i1615865.MRDC.13 │ │ │ │ │ └── i1615869.MRDC.7 │ │ │ ├── Patient-PCMRI-complete.mitk │ │ │ └── Patient-PCMRI.mitk │ │ └── ExampleB-PC-MRI-specificVelocityProfiles.pdf │ └── ExampleCaseC │ │ ├── AdditionalInputFiles │ │ ├── PRSCondition │ │ │ ├── 3D │ │ │ │ └── solver.inp │ │ │ ├── LAD1coronaryRdController.py │ │ │ ├── LAD1coronaryRpController.py │ │ │ ├── LAD2coronaryRdController.py │ │ │ ├── LAD2coronaryRpController.py │ │ │ ├── LADcoronaryRdController.py │ │ │ ├── LADcoronaryRpController.py │ │ │ ├── LCxcoronaryRdController.py │ │ │ ├── LCxcoronaryRpController.py │ │ │ ├── LVDataElastanceController.py │ │ │ ├── LVElastance.dat │ │ │ ├── LVventricularPressureObserver.py │ │ │ ├── LVventricularPressureReceiver.py │ │ │ ├── RCA1coronaryRdController.py │ │ │ ├── RCA1coronaryRpController.py │ │ │ ├── RCAcoronaryRdController.py │ │ │ ├── RCAcoronaryRpController.py │ │ │ ├── RVDataElastanceController.py │ │ │ ├── RVElastance.dat │ │ │ ├── RVventricularPressureObserver.py │ │ │ ├── RVventricularPressureReceiver.py │ │ │ ├── backflowDiodeResistorController.py │ │ │ ├── backflowDiodeResistorControllerAorta.py │ │ │ ├── netlist_closed_loop_downstream.xml │ │ │ ├── netlist_surfaces.xml │ │ │ └── solver.inp │ │ └── RestingCondition │ │ │ ├── 3D │ │ │ └── solver.inp │ │ │ ├── LAD1coronaryRdController.py │ │ │ ├── LAD1coronaryRpController.py │ │ │ ├── LAD2coronaryRdController.py │ │ │ ├── LAD2coronaryRpController.py │ │ │ ├── LADcoronaryRdController.py │ │ │ ├── LADcoronaryRpController.py │ │ │ ├── LCxcoronaryRdController.py │ │ │ ├── LCxcoronaryRpController.py │ │ │ ├── LVDataElastanceController.py │ │ │ ├── LVElastance.dat │ │ │ ├── LVventricularPressureObserver.py │ │ │ ├── LVventricularPressureReceiver.py │ │ │ ├── RCA1coronaryRdController.py │ │ │ ├── RCA1coronaryRpController.py │ │ │ ├── RCAcoronaryRdController.py │ │ │ ├── RCAcoronaryRpController.py │ │ │ ├── RVDataElastanceController.py │ │ │ ├── RVElastance.dat │ │ │ ├── RVventricularPressureObserver.py │ │ │ ├── RVventricularPressureReceiver.py │ │ │ ├── backflowDiodeResistorController.py │ │ │ ├── netlist_closed_loop_downstream.xml │ │ │ ├── netlist_surfaces.xml │ │ │ ├── netlist_surfaces_visualisation.html │ │ │ └── solver.inp │ │ ├── ExampleC-simulating-Rest-vs-PRS-in-Alagille-patients.pdf │ │ ├── MITK_Scenes │ │ ├── PRSCondition.mitk │ │ └── RestingCondition.mitk │ │ └── ReadyToUseFiles │ │ ├── PRSCondition │ │ ├── LAD1coronaryRdController.py │ │ ├── LAD1coronaryRpController.py │ │ ├── LAD2coronaryRdController.py │ │ ├── LAD2coronaryRpController.py │ │ ├── LADcoronaryRdController.py │ │ ├── LADcoronaryRpController.py │ │ ├── LCxcoronaryRdController.py │ │ ├── LCxcoronaryRpController.py │ │ ├── LVDataElastanceController.py │ │ ├── LVElastance.dat │ │ ├── LVventricularPressureObserver.py │ │ ├── LVventricularPressureReceiver.py │ │ ├── RCA1coronaryRdController.py │ │ ├── RCA1coronaryRpController.py │ │ ├── RCAcoronaryRdController.py │ │ ├── RCAcoronaryRpController.py │ │ ├── RVDataElastanceController.py │ │ ├── RVElastance.dat │ │ ├── RVventricularPressureObserver.py │ │ ├── RVventricularPressureReceiver.py │ │ ├── backflowDiodeResistorController.py │ │ ├── backflowDiodeResistorControllerAorta.py │ │ ├── faceInfo.dat │ │ ├── geombc.dat.1 │ │ ├── multidomain.dat │ │ ├── netlist_closed_loop_downstream.xml │ │ ├── netlist_surfaces.xml │ │ ├── numstart.dat │ │ ├── restart.0.1 │ │ └── solver.inp │ │ └── RestingCondition │ │ ├── LAD1coronaryRdController.py │ │ ├── LAD1coronaryRpController.py │ │ ├── LAD2coronaryRdController.py │ │ ├── LAD2coronaryRpController.py │ │ ├── LADcoronaryRdController.py │ │ ├── LADcoronaryRpController.py │ │ ├── LCxcoronaryRdController.py │ │ ├── LCxcoronaryRpController.py │ │ ├── LVDataElastanceController.py │ │ ├── LVElastance.dat │ │ ├── LVventricularPressureObserver.py │ │ ├── LVventricularPressureReceiver.py │ │ ├── RCA1coronaryRdController.py │ │ ├── RCA1coronaryRpController.py │ │ ├── RCAcoronaryRdController.py │ │ ├── RCAcoronaryRpController.py │ │ ├── RVDataElastanceController.py │ │ ├── RVElastance.dat │ │ ├── RVventricularPressureObserver.py │ │ ├── RVventricularPressureReceiver.py │ │ ├── backflowDiodeResistorController.py │ │ ├── faceInfo.dat │ │ ├── geombc.dat.1 │ │ ├── multidomain.dat │ │ ├── netlist_closed_loop_downstream.xml │ │ ├── netlist_surfaces.xml │ │ ├── netlist_surfaces_visualisation.html │ │ ├── numstart.dat │ │ ├── restart.0.1 │ │ └── solver.inp ├── Images │ ├── cmake.PNG │ ├── cmake2.PNG │ ├── cmake3.PNG │ ├── folders.png │ ├── sweep.png │ ├── vs.png │ ├── vs1.PNG │ ├── vs2.PNG │ ├── vs3.PNG │ ├── vs4.PNG │ └── vs5.PNG └── SystemRequirementsAndRequiredSoftware.md ├── Doxyfile ├── LICENSE.txt ├── Modules ├── AsyncTask │ ├── AsyncTask.cpp │ ├── AsyncTask.h │ ├── AsyncTaskWithResult.cpp │ ├── AsyncTaskWithResult.h │ ├── CMakeLists.txt │ └── files.cmake ├── CGALVMTKMeshingKernel │ ├── CMakeLists.txt │ ├── DataManagement │ │ ├── MeshData.cpp │ │ ├── MeshData.h │ │ ├── MeshingParametersData.cpp │ │ └── MeshingParametersData.h │ ├── ExtensionPoint │ │ ├── IMeshingKernel.cpp │ │ ├── IMeshingKernel.h │ │ ├── crimsonTetGenWrapper.cpp │ │ ├── crimsonTetGenWrapper.h │ │ ├── predicates.cxx │ │ ├── tetgen.cxx │ │ ├── tetgen.h │ │ └── ui │ │ │ ├── GlobalMeshingParametersWidget.cpp │ │ │ ├── GlobalMeshingParametersWidget.h │ │ │ ├── GlobalMeshingParametersWidget.ui │ │ │ ├── LocalMeshingParametersDialog.cpp │ │ │ ├── LocalMeshingParametersDialog.h │ │ │ ├── LocalMeshingParametersDialog.ui │ │ │ ├── LocalParameterEditor.h │ │ │ ├── MeshingKernelUI.cpp │ │ │ ├── MeshingKernelUI.h │ │ │ └── resources │ │ │ ├── MeshingKernelUI.qrc │ │ │ ├── add.png │ │ │ ├── default.png │ │ │ ├── remove.png │ │ │ ├── use_default.png │ │ │ └── warning.png │ ├── IO │ │ ├── MeshDataCoreObjectFactory.cpp │ │ ├── MeshDataCoreObjectFactory.h │ │ ├── MeshDataIO.cpp │ │ ├── MeshDataIO.h │ │ ├── MeshingKernelIOMimeTypes.cpp │ │ ├── MeshingKernelIOMimeTypes.h │ │ ├── MeshingParametersBoostIO.h │ │ ├── MeshingParametersDataIO.cpp │ │ └── MeshingParametersDataIO.h │ ├── Initialization │ │ └── MeshingKernelModuleActivator.cpp │ ├── Rendering │ │ ├── MeshDataMapper.cpp │ │ └── MeshDataMapper.h │ └── files.cmake ├── CMakeLists.txt ├── CRIMSONUtils │ ├── CMakeLists.txt │ ├── files.cmake │ ├── include │ │ ├── ImmutableRanges.h │ │ ├── NodePredicateDerivation.h │ │ └── NodePredicateNone.h │ └── src │ │ └── NodePredicateDerivation.cpp ├── PCMRIKernel │ ├── CMakeLists.txt │ ├── DataManagement │ │ ├── PCMRIData.cpp │ │ └── PCMRIData.h │ ├── Documentation │ │ └── doxygen │ │ │ └── modules.dox │ ├── ExtensionPoint │ │ ├── IPCMRIKernel.cpp │ │ ├── IPCMRIKernel.h │ │ └── internal │ │ │ ├── BSplines.hxx │ │ │ ├── BsplineGrid.hxx │ │ │ ├── Image_tools.hxx │ │ │ ├── LinearSolvers.hxx │ │ │ ├── Matrix_tools.hxx │ │ │ ├── Mesh_tools.hxx │ │ │ ├── Point_tools.hxx │ │ │ ├── String_tools.hxx │ │ │ ├── geoCellBase.hxx │ │ │ ├── geoMeshField.hxx │ │ │ ├── geoTriangle.hxx │ │ │ └── myTimer.hxx │ ├── IO │ │ ├── Multi_ArraySerialize.h │ │ ├── PCMRIDataBoostIO.h │ │ ├── PCMRIDataCoreObjectFactory.cpp │ │ ├── PCMRIDataCoreObjectFactory.h │ │ ├── PCMRIDataIO.cpp │ │ ├── PCMRIDataIO.h │ │ ├── PCMRIKernelIOMimeTypes.cpp │ │ └── PCMRIKernelIOMimeTypes.h │ ├── Initialization │ │ └── PCMRIKernelModuleActivator.cpp │ ├── Rendering │ │ ├── PCMRIDataMapper.cpp │ │ └── PCMRIDataMapper.h │ ├── Testing │ │ └── TestData │ │ │ ├── ref.mhd │ │ │ ├── ref.raw │ │ │ ├── test_data.h │ │ │ ├── vector_image1.mhd │ │ │ └── vector_image1.raw │ └── files.cmake ├── PythonSolverSetupService │ ├── CMakeLists.txt │ ├── files.cmake │ ├── include │ │ ├── PythonBoundaryCondition.h │ │ ├── PythonBoundaryConditionSet.h │ │ ├── PythonFaceDataImpl.h │ │ ├── PythonMaterialData.h │ │ ├── PythonSolverParametersData.h │ │ ├── PythonSolverSetupManager.h │ │ ├── PythonSolverSetupService.h │ │ ├── PythonSolverSetupServiceActivator.h │ │ └── PythonSolverStudyData.h │ └── src │ │ ├── PythonBoundaryCondition.cpp │ │ ├── PythonBoundaryConditionSet.cpp │ │ ├── PythonFaceDataImpl.cpp │ │ ├── PythonMaterialData.cpp │ │ ├── PythonQtWrappers.h │ │ ├── PythonSolverParametersData.cpp │ │ ├── PythonSolverSetupManager.cpp │ │ ├── PythonSolverSetupService.cpp │ │ ├── PythonSolverSetupServiceActivator.cpp │ │ ├── PythonSolverStudyData.cpp │ │ ├── QtPropertyBrowserTools.h │ │ ├── SolverSetupPythonObjectIO.h │ │ └── SolverSetupPythonUtils.h ├── SolidKernel │ ├── CMakeLists.txt │ ├── DataManagement │ │ ├── DiscreteSolidData.cpp │ │ ├── DiscreteSolidData.h │ │ ├── OCCBRepData.cpp │ │ ├── OCCBRepData.h │ │ ├── SolidData.cpp │ │ ├── SolidData.h │ │ ├── vtkGetBoundaryFaces.cpp │ │ └── vtkGetBoundaryFaces.h │ ├── Documentation │ │ └── doxygen │ │ │ └── modules.dox │ ├── ExtensionPoint │ │ ├── FaceIdentifier.h │ │ ├── FaceIdentifierBoostIO.h │ │ ├── ISolidModelKernel.cpp │ │ ├── ISolidModelKernel.h │ │ └── internal │ │ │ ├── BRepFill_PipeShellA.cxx │ │ │ ├── BRepFill_PipeShellA.hxx │ │ │ ├── BRepFill_SectionPlacement_A.cxx │ │ │ ├── BRepFill_SectionPlacement_A.hxx │ │ │ ├── ContourParametrization.cpp │ │ │ ├── ContourParametrization.h │ │ │ ├── GeomFill_GuideTrihedronAC_A.cxx │ │ │ └── GeomFill_GuideTrihedronAC_A.hxx │ ├── IO │ │ ├── DiscreteDataIOMimeTypes.cpp │ │ ├── DiscreteDataIOMimeTypes.h │ │ ├── DiscreteSolidDataIO.cpp │ │ ├── DiscreteSolidDataIO.h │ │ ├── OCCBRepDataIO.cpp │ │ ├── OCCBRepDataIO.h │ │ ├── OpenCascadeSolidKernelIOMimeTypes.cpp │ │ ├── OpenCascadeSolidKernelIOMimeTypes.h │ │ ├── SolidDataCoreObjectFactory.cpp │ │ ├── SolidDataCoreObjectFactory.h │ │ └── SolidDataFaceInfoBoostIO.h │ ├── Initialization │ │ └── SolidKernelModuleActivator.cpp │ ├── Interactions │ │ ├── SolidDataFacePickingObserver.cpp │ │ └── SolidDataFacePickingObserver.h │ ├── Rendering │ │ ├── SolidDataMapper.cpp │ │ └── SolidDataMapper.h │ ├── Testing │ │ ├── CMakeLists.txt │ │ ├── OCCBlendingTest.cpp │ │ ├── OCCLoftingTest.cpp │ │ ├── OCCTestingConfig.h.in │ │ ├── TestData │ │ │ ├── blending │ │ │ │ ├── custom_bops.mitk │ │ │ │ ├── single_vessel_blend.mitk │ │ │ │ ├── three_way_blend.mitk │ │ │ │ ├── two_way_blend.mitk │ │ │ │ ├── two_way_blend_disconnected_component.mitk │ │ │ │ ├── two_way_blend_disconnected_component_2.mitk │ │ │ │ ├── two_way_blend_fillet_at_ends.mitk │ │ │ │ └── two_way_blend_no_fillet.mitk │ │ │ └── lofting │ │ │ │ ├── complex_loft_aorta.mitk │ │ │ │ ├── complex_sweep_aorta.mitk │ │ │ │ ├── cylinder_use_inflow_outflow_as_wall.mitk │ │ │ │ └── simple_cylinder.mitk │ │ └── files.cmake │ └── files.cmake ├── SolverSetupService │ ├── CMakeLists.txt │ ├── Resources │ │ └── Interactions │ │ │ └── PointSetConfigCRIMSON.xml │ ├── files.cmake │ ├── include │ │ ├── FaceData.h │ │ ├── IBoundaryCondition.h │ │ ├── IBoundaryConditionSet.h │ │ ├── IMaterialData.h │ │ ├── ISolverParametersData.h │ │ ├── ISolverSetupManager.h │ │ ├── ISolverSetupService.h │ │ ├── ISolverStudyData.h │ │ ├── QtPropertyStorage.h │ │ ├── SolutionData.h │ │ └── SolverSetupUtils.h │ └── src │ │ ├── IO │ │ ├── SolutionDataIO.cpp │ │ ├── SolutionDataIO.h │ │ ├── SolverSetupServiceIOMimeTypes.cpp │ │ └── SolverSetupServiceIOMimeTypes.h │ │ ├── Initialization │ │ └── SolverSetupServiceModuleActivator.cpp │ │ └── SolutionData.cpp └── VesselTree │ ├── CMakeLists.txt │ ├── DataManagement │ ├── VesselForestData.cpp │ ├── VesselForestData.h │ ├── VesselForestDataGraphTraits.h │ ├── VesselPathAbstractData.cpp │ ├── VesselPathAbstractData.h │ ├── VesselPathOperation.cpp │ ├── VesselPathOperation.h │ ├── vtkParametricSplineVesselPathData.cpp │ └── vtkParametricSplineVesselPathData.h │ ├── IO │ ├── IOUtilDataSerializer.h │ ├── VesselForestCoreObjectFactory.cpp │ ├── VesselForestCoreObjectFactory.h │ ├── VesselForestDataIO.cpp │ ├── VesselForestDataIO.h │ ├── VesselTreeIOMimeTypes.cpp │ ├── VesselTreeIOMimeTypes.h │ ├── vtkParametricSplineVesselPathIO.cpp │ └── vtkParametricSplineVesselPathIO.h │ ├── Initialization │ └── VesselTreeModuleActivator.cpp │ ├── Interactions │ ├── VesselPathInteractor.cpp │ └── VesselPathInteractor.h │ ├── Rendering │ ├── vtkParametricSplineVesselPathVtkMapper3D.cpp │ └── vtkParametricSplineVesselPathVtkMapper3D.h │ ├── Resources │ ├── Interactions │ │ ├── VesselPathConfig.xml │ │ └── VesselPathInteraction.xml │ ├── cursor_addpoint.png │ ├── cursor_addpoint.psd │ ├── cursor_base.png │ ├── cursor_insertpoint.png │ ├── cursor_insertpoint.psd │ ├── cursor_insertpoint.svg │ ├── cursor_movepoint.png │ ├── cursor_movepoint.psd │ ├── cursor_normal.png │ ├── cursor_removepoint.png │ └── cursor_removepoint.psd │ ├── Testing │ ├── CMakeLists.txt │ ├── VesselPathDataTest.cpp │ ├── VesselTreeDataTest.cpp │ └── files.cmake │ ├── Utilities │ └── vesselTreeUtils.h │ └── files.cmake ├── Patch ├── CGAL-4.4 │ └── cmake │ │ └── modules │ │ └── CGAL_TweakFindBoost.cmake ├── CMake 3.0 │ └── InstallRequiredSystemLibraries.cmake ├── CTK │ ├── CMake │ │ └── ctkMacroBuildPlugin.cmake │ └── qRestAPI │ │ ├── qRestAPI.cpp │ │ └── qRestAPI_p.h ├── ITK │ └── Modules │ │ └── ThirdParty │ │ └── VNL │ │ └── src │ │ └── vxl │ │ └── vcl │ │ └── vcl_compiler.h ├── OpenCASCADE │ ├── TKPCAF_MSVS_fix.py │ └── src │ │ └── BSplCLib │ │ └── BSplCLib.cxx ├── Qwt │ └── src │ │ └── qwt_global.h ├── VTK │ └── Common │ │ └── DataModel │ │ └── vtkTriangle.cxx ├── commontk_QtPropertyBrowser │ ├── CMakeLists.txt │ └── src │ │ ├── CMakeLists.txt │ │ ├── QDoubleSpinBoxG.cpp │ │ ├── QDoubleSpinBoxG.h │ │ ├── qtbuttonpropertybrowser.cpp │ │ ├── qteditorfactory.cpp │ │ ├── qteditorfactory.h │ │ ├── qtgroupboxpropertybrowser.cpp │ │ ├── qtpropertybrowser.h │ │ ├── qtpropertybrowserutils.cpp │ │ ├── qtpropertybrowserutils_p.h │ │ ├── qtpropertymanager.cpp │ │ ├── qtpropertymanager.h │ │ ├── qttreepropertybrowser.cpp │ │ ├── qtvariantproperty.cpp │ │ └── qtvariantproperty.h ├── opencascade-6.8.0 │ └── adm │ │ ├── cmake │ │ ├── TKIVtk │ │ │ └── CMakeLists.txt │ │ └── TKIVtkDraw │ │ │ └── CMakeLists.txt │ │ └── templates │ │ └── vtk.cmake └── opencascade-6.9.0 │ └── src │ └── BSplCLib │ └── BSplCLib.cxx ├── Plugins ├── Plugins.cmake ├── uk.ac.kcl.AsyncTaskManager │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ └── src │ │ ├── AsyncTaskManager.cpp │ │ ├── AsyncTaskManager.h │ │ ├── CompositeTask.cpp │ │ ├── CompositeTask.h │ │ ├── CreateDataNodeAsyncTask.cpp │ │ ├── CreateDataNodeAsyncTask.h │ │ ├── QAsyncTaskAdapter.cpp │ │ ├── QAsyncTaskAdapter.h │ │ ├── internal │ │ ├── uk_ac_kcl_AsyncTaskManager_Activator.cpp │ │ └── uk_ac_kcl_AsyncTaskManager_Activator.h │ │ └── utils │ │ └── TaskStateObserver.h ├── uk.ac.kcl.AsyncTaskManagerView │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ ├── resources │ │ ├── AsyncTaskManager.qrc │ │ ├── Icon_AsyncTaskManagerView.jpg │ │ └── icons │ │ │ └── stop.png │ └── src │ │ └── internal │ │ ├── AsyncTaskManagerView.cpp │ │ ├── AsyncTaskManagerView.h │ │ ├── AsyncTaskManagerView.ui │ │ ├── uk_ac_kcl_AsyncTaskManagerView_Activator.cpp │ │ └── uk_ac_kcl_AsyncTaskManagerView_Activator.h ├── uk.ac.kcl.CRIMSONApp │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ ├── resources │ │ ├── CRIMSON-logo.png │ │ ├── Icon_MeshingAndSolverSetupPerspective.png │ │ ├── Icon_VelocityMappingPerspective.png │ │ ├── Icon_VesselBlendingView.png │ │ ├── KCL-logo.png │ │ ├── icons │ │ │ ├── checkbox.png │ │ │ ├── down_arrow.png │ │ │ ├── handle.png │ │ │ ├── triangle_down.png │ │ │ └── triangle_right.png │ │ ├── logo.qrc │ │ ├── vmStyle-activetab.qss │ │ ├── vmStyle-tab.qss │ │ ├── vmStyle.qrc │ │ └── vmStyle.qss │ └── src │ │ ├── CRIMSONAppWorkbenchAdvisor.cpp │ │ ├── CRIMSONAppWorkbenchAdvisor.h │ │ ├── CRIMSONAppWorkbenchWindowAdvisor.cpp │ │ ├── CRIMSONAppWorkbenchWindowAdvisor.h │ │ ├── CRIMSONApplication.cpp │ │ ├── CRIMSONApplication.h │ │ ├── CRIMSONVersion.h.in │ │ ├── CRIMSONWorkflowWidget.cpp │ │ ├── CRIMSONWorkflowWidget.h │ │ ├── ExpandablePerspectiveButton.cpp │ │ ├── ExpandablePerspectiveButton.h │ │ ├── PopupWidget.cpp │ │ ├── PopupWidget.h │ │ ├── PopupWidget_p.h │ │ └── internal │ │ ├── Perspectives │ │ ├── GeometryModelingPerspective.cpp │ │ ├── GeometryModelingPerspective.h │ │ ├── MeshingAndSolverSetupPerspective.cpp │ │ └── MeshingAndSolverSetupPerspective.h │ │ ├── uk_ac_kcl_CRIMSONApp_Activator.cpp │ │ └── uk_ac_kcl_CRIMSONApp_Activator.h ├── uk.ac.kcl.HierarchyManager │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ └── src │ │ ├── HierarchyManager.cpp │ │ ├── HierarchyManager.h │ │ └── internal │ │ ├── uk_ac_kcl_HierarchyManager_Activator.cpp │ │ └── uk_ac_kcl_HierarchyManager_Activator.h ├── uk.ac.kcl.SolverSetup │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ ├── resources │ │ ├── SolverSetup.qrc │ │ ├── bc.psd │ │ ├── bcs.psd │ │ ├── gear.png │ │ ├── icons │ │ │ ├── DataManagerIcon_SolverStudy.png │ │ │ ├── DataManagerIcon_bc.png │ │ │ ├── DataManagerIcon_bcs.png │ │ │ ├── DataManagerIcon_material.png │ │ │ ├── DataManagerIcon_root.png │ │ │ ├── DataManagerIcon_solution.png │ │ │ ├── DataManagerIcon_ss.png │ │ │ ├── add.png │ │ │ ├── open.png │ │ │ └── remove.png │ │ ├── root.psd │ │ ├── ss.psd │ │ └── study.psd │ └── src │ │ ├── SolverSetupNodeTypes.cpp │ │ ├── SolverSetupNodeTypes.h │ │ └── internal │ │ ├── uk_ac_kcl_SolverSetup_Activator.cpp │ │ └── uk_ac_kcl_SolverSetup_Activator.h ├── uk.ac.kcl.SolverSetupPython │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ └── src │ │ ├── PythonSolverSetupPreferencePage.cpp │ │ ├── PythonSolverSetupPreferencePage.h │ │ ├── PythonSolverSetupPreferencePage.ui │ │ └── internal │ │ ├── uk_ac_kcl_SolverSetupPython_Activator.cpp │ │ └── uk_ac_kcl_SolverSetupPython_Activator.h ├── uk.ac.kcl.SolverSetupView │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ ├── resources │ │ ├── Icon_MeshAdaptView.png │ │ ├── Icon_PCMRIMappingWidget.png │ │ ├── Icon_SolverSetupView.png │ │ ├── SolverSetup.qrc │ │ ├── cursors │ │ │ ├── Circle_cursor.png │ │ │ ├── Ellipse_cursor.png │ │ │ ├── Point_cursor.png │ │ │ ├── Polygon_cursor.png │ │ │ ├── cursor_addpoint.png │ │ │ ├── cursor_insertpoint.png │ │ │ ├── cursor_removepoint.png │ │ │ ├── left-mouse.png │ │ │ └── right-mouse.png │ │ ├── icons │ │ │ ├── DataManagerIcon_Map.png │ │ │ ├── DataManagerIcon_SolverStudy.png │ │ │ ├── DataManagerIcon_VesselPath.png │ │ │ ├── DataManagerIcon_VesselPath.psd │ │ │ ├── DataManagerIcon_VesselTree.png │ │ │ ├── DataManagerIcon_VesselTree.psd │ │ │ ├── DataManagerIcon_bc.png │ │ │ ├── DataManagerIcon_bcs.png │ │ │ ├── DataManagerIcon_material.png │ │ │ ├── DataManagerIcon_solution.png │ │ │ ├── DataManagerIcon_ss.png │ │ │ ├── add.png │ │ │ ├── add2.png │ │ │ ├── addAuto.png │ │ │ ├── addPointType.psd │ │ │ ├── addToEnd.png │ │ │ ├── addToStart.png │ │ │ ├── circle.png │ │ │ ├── copy.png │ │ │ ├── delete.png │ │ │ ├── down.png │ │ │ ├── duplicate.png │ │ │ ├── duplicate.psd │ │ │ ├── edit.png │ │ │ ├── ellipse.png │ │ │ ├── go-up.svg │ │ │ ├── interpolate.png │ │ │ ├── interpolate.psd │ │ │ ├── interpolateAll.png │ │ │ ├── list.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── point.png │ │ │ ├── polygon.png │ │ │ ├── remove.png │ │ │ ├── save.png │ │ │ ├── settings.png │ │ │ ├── stop.png │ │ │ ├── throughCenters.png │ │ │ ├── throughCenters.psd │ │ │ ├── up.png │ │ │ ├── vis_off.png │ │ │ ├── vis_on.png │ │ │ └── warning.png │ │ └── vesselSegmentation.qrc │ └── src │ │ └── internal │ │ ├── 3rdParty │ │ └── BestFit │ │ │ ├── BestFit.cpp │ │ │ ├── BestFit.h │ │ │ ├── Double.cpp │ │ │ ├── Shapes.cpp │ │ │ └── cholesky.h │ │ ├── BoundaryConditionTypeSelectionDialog.ui │ │ ├── ConstMemberCommand.h │ │ ├── ContourTypeConversion.cpp │ │ ├── ContourTypeConversion.h │ │ ├── FaceDataEditorWidget.cpp │ │ ├── FaceDataEditorWidget.h │ │ ├── FaceDataEditorWidget.ui │ │ ├── MapAction.cpp │ │ ├── MapAction.h │ │ ├── MaterialVisualizationWidget.cpp │ │ ├── MaterialVisualizationWidget.h │ │ ├── MaterialVisualizationWidget.ui │ │ ├── MeshAdaptView.cpp │ │ ├── MeshAdaptView.h │ │ ├── MeshAdaptView.ui │ │ ├── PCMRIMappingWidget.cpp │ │ ├── PCMRIMappingWidget.h │ │ ├── PCMRIMappingWidget.ui │ │ ├── PCMRIUtils.cpp │ │ ├── PCMRIUtils.h │ │ ├── ReslicePropertiesWidget.ui │ │ ├── ResliceView.cpp │ │ ├── ResliceView.h │ │ ├── ResliceViewListener.h │ │ ├── ShowHideContoursAction.cpp │ │ ├── ShowHideContoursAction.h │ │ ├── SolverSetupView.cpp │ │ ├── SolverSetupView.h │ │ ├── SolverSetupView.ui │ │ ├── SolverStudyUIDsTableModel.cpp │ │ ├── SolverStudyUIDsTableModel.h │ │ ├── ThumbnailGenerator.cpp │ │ ├── ThumbnailGenerator.h │ │ ├── TimeInterpolationDialog.cpp │ │ ├── TimeInterpolationDialog.h │ │ ├── TimeInterpolationDialog.ui │ │ ├── VesselDrivenSlicedGeometry.h │ │ ├── createMaskedImageDialog.ui │ │ ├── uk_ac_kcl_SolverSetupView_Activator.cpp │ │ └── uk_ac_kcl_SolverSetupView_Activator.h ├── uk.ac.kcl.VascularModeling.Eager │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ ├── resources │ │ ├── VascularModeling.qrc │ │ └── icons │ │ │ ├── DataManagerIcon_Blend.png │ │ │ ├── DataManagerIcon_Loft.png │ │ │ ├── DataManagerIcon_VesselPath.png │ │ │ ├── DataManagerIcon_VesselPath.psd │ │ │ ├── DataManagerIcon_VesselTree.png │ │ │ ├── DataManagerIcon_VesselTree.psd │ │ │ ├── go-down.svg │ │ │ ├── go-up.svg │ │ │ ├── hierarchy.png │ │ │ ├── vis_off.png │ │ │ └── vis_on.png │ └── src │ │ ├── VascularModelingNodeTypes.cpp │ │ ├── VascularModelingNodeTypes.h │ │ ├── VesselTreeHierarchyController.cpp │ │ ├── VesselTreeHierarchyController.h │ │ └── internal │ │ ├── uk_ac_kcl_VascularModeling_Eager_Activator.cpp │ │ └── uk_ac_kcl_VascularModeling_Eager_Activator.h ├── uk.ac.kcl.VascularModeling │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ ├── resources │ │ ├── Icon_ContourModelingView.eps │ │ ├── Icon_ContourModelingView.png │ │ ├── Icon_VesselBlendingView.eps │ │ ├── Icon_VesselBlendingView.png │ │ ├── Icon_VesselDrivenResliceView.png │ │ ├── Icon_VesselTreeView.png │ │ ├── cursors │ │ │ ├── Circle_cursor.png │ │ │ ├── Ellipse_cursor.png │ │ │ ├── Point_cursor.png │ │ │ ├── Polygon_cursor.png │ │ │ ├── cursor_addpoint.png │ │ │ ├── cursor_insertpoint.png │ │ │ ├── cursor_removepoint.png │ │ │ ├── left-mouse.png │ │ │ └── right-mouse.png │ │ ├── icons │ │ │ ├── DataManagerIcon_Blend.png │ │ │ ├── DataManagerIcon_Loft.png │ │ │ ├── DataManagerIcon_VesselPath.png │ │ │ ├── DataManagerIcon_VesselPath.psd │ │ │ ├── DataManagerIcon_VesselTree.png │ │ │ ├── DataManagerIcon_VesselTree.psd │ │ │ ├── LoftPreview.png │ │ │ ├── add.png │ │ │ ├── add2.png │ │ │ ├── addAuto.png │ │ │ ├── addPointType.psd │ │ │ ├── addToEnd.png │ │ │ ├── addToStart.png │ │ │ ├── circle.png │ │ │ ├── copy.png │ │ │ ├── delete.png │ │ │ ├── down.png │ │ │ ├── duplicate.png │ │ │ ├── duplicate.psd │ │ │ ├── edit.png │ │ │ ├── ellipse.png │ │ │ ├── interpolate.png │ │ │ ├── interpolate.psd │ │ │ ├── new.png │ │ │ ├── point.png │ │ │ ├── polygon.png │ │ │ ├── remove.png │ │ │ ├── settings.png │ │ │ ├── stop.png │ │ │ ├── throughCenters.png │ │ │ ├── throughCenters.psd │ │ │ ├── up.png │ │ │ ├── vis_off.png │ │ │ ├── vis_on.png │ │ │ └── warning.png │ │ └── vesselSegmentation.qrc │ └── src │ │ ├── FaceListTableModel.cpp │ │ ├── FaceListTableModel.h │ │ ├── NodeDependentView.cpp │ │ ├── NodeDependentView.h │ │ ├── SelectFacesFromListDialog.cpp │ │ ├── SelectFacesFromListDialog.h │ │ ├── SelectFacesFromListDialog.ui │ │ ├── SelectedFacesTableModel.cpp │ │ ├── SelectedFacesTableModel.h │ │ └── internal │ │ ├── 3rdParty │ │ └── BestFit │ │ │ ├── BestFit.cpp │ │ │ ├── BestFit.h │ │ │ ├── Double.cpp │ │ │ ├── Shapes.cpp │ │ │ └── cholesky.h │ │ ├── BlendAction.cpp │ │ ├── BlendAction.h │ │ ├── BooleanOperationItemDelegate.cpp │ │ ├── BooleanOperationItemDelegate.h │ │ ├── ConstMemberCommand.h │ │ ├── ContourModelingView.cpp │ │ ├── ContourModelingView.h │ │ ├── ContourModelingView.ui │ │ ├── ContourTypeConversion.cpp │ │ ├── ContourTypeConversion.h │ │ ├── DetectIntersectionsTask.h │ │ ├── ExportVesselsAction.cpp │ │ ├── ExportVesselsAction.h │ │ ├── ImportVesselsAction.cpp │ │ ├── ImportVesselsAction.h │ │ ├── LoftAction.cpp │ │ ├── LoftAction.h │ │ ├── ReparentAction.cpp │ │ ├── ReparentAction.h │ │ ├── ReparentDialog.ui │ │ ├── ReslicePropertiesWidget.ui │ │ ├── ShowHideContoursAction.cpp │ │ ├── ShowHideContoursAction.h │ │ ├── ThumbnailGenerator.cpp │ │ ├── ThumbnailGenerator.h │ │ ├── UseVesselsInBlendingDialog.h │ │ ├── UseVesselsInBlendingDialog.ui │ │ ├── VascularModelingUtils.cpp │ │ ├── VascularModelingUtils.h │ │ ├── VesselBlendingView.cpp │ │ ├── VesselBlendingView.h │ │ ├── VesselBlendingView.ui │ │ ├── VesselDrivenResliceView.cpp │ │ ├── VesselDrivenResliceView.h │ │ ├── VesselDrivenResliceViewListener.h │ │ ├── VesselDrivenSlicedGeometry.h │ │ ├── VesselPathPlanningView.cpp │ │ ├── VesselPathPlanningView.h │ │ ├── createMaskedImageDialog.ui │ │ ├── uk_ac_kcl_VascularModeling_Activator.cpp │ │ ├── uk_ac_kcl_VascularModeling_Activator.h │ │ ├── vesselPathItemModel.cpp │ │ ├── vesselPathItemModel.h │ │ ├── vesselPathTableViewWidget.cpp │ │ ├── vesselPathTableViewWidget.h │ │ └── vesselSegmentationToolbox.ui ├── uk.ac.kcl.VesselMeshing.Eager │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ ├── resources │ │ ├── VesselMeshing.qrc │ │ └── icons │ │ │ ├── DataManagerIcon_Loft.png │ │ │ ├── DataManagerIcon_Mesh.png │ │ │ └── info.png │ └── src │ │ ├── VesselMeshingNodeTypes.cpp │ │ ├── VesselMeshingNodeTypes.h │ │ └── internal │ │ ├── uk_ac_kcl_VesselMeshing_Eager_Activator.cpp │ │ └── uk_ac_kcl_VesselMeshing_Eager_Activator.h └── uk.ac.kcl.VesselMeshing │ ├── CMakeLists.txt │ ├── files.cmake │ ├── manifest_headers.cmake │ ├── plugin.xml │ ├── resources │ ├── DataManagerIcon_Loft.png │ ├── DataManagerIcon_Mesh.png │ ├── Icon_MeshExplorationView.png │ ├── Icon_VesselMeshingView.png │ ├── VesselMeshing.qrc │ ├── info.png │ ├── refresh.png │ └── stop.png │ └── src │ └── internal │ ├── ConvertToDiscreteModelAction.cpp │ ├── ConvertToDiscreteModelAction.h │ ├── MeshAction.cpp │ ├── MeshAction.h │ ├── MeshExplorationView.cpp │ ├── MeshExplorationView.h │ ├── MeshExplorationView.ui │ ├── MeshInformationDialog.cpp │ ├── MeshInformationDialog.h │ ├── MeshInformationDialog.ui │ ├── MeshingUtils.cpp │ ├── MeshingUtils.h │ ├── ShowMeshInformationAction.cpp │ ├── ShowMeshInformationAction.h │ ├── VesselMeshingView.cpp │ ├── VesselMeshingView.h │ ├── VesselMeshingView.ui │ ├── uk_ac_kcl_VesselMeshing_Activator.cpp │ └── uk_ac_kcl_VesselMeshing_Activator.h ├── Presolver ├── 3rdParty │ ├── nspcg │ │ ├── CMakeLists.txt │ │ ├── nspcg1.f │ │ ├── nspcg2.f │ │ ├── nspcg3.f │ │ ├── nspcg4.f │ │ └── nspcg5.f │ └── sparse │ │ ├── doc │ │ └── spDoc.tex │ │ ├── dox │ │ ├── html │ │ │ ├── annotated.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── files.html │ │ │ ├── form_0.png │ │ │ ├── form_1.png │ │ │ ├── form_10.png │ │ │ ├── form_11.png │ │ │ ├── form_12.png │ │ │ ├── form_13.png │ │ │ ├── form_14.png │ │ │ ├── form_15.png │ │ │ ├── form_16.png │ │ │ ├── form_17.png │ │ │ ├── form_18.png │ │ │ ├── form_19.png │ │ │ ├── form_2.png │ │ │ ├── form_20.png │ │ │ ├── form_21.png │ │ │ ├── form_22.png │ │ │ ├── form_3.png │ │ │ ├── form_4.png │ │ │ ├── form_5.png │ │ │ ├── form_6.png │ │ │ ├── form_7.png │ │ │ ├── form_8.png │ │ │ ├── form_9.png │ │ │ ├── formula.repository │ │ │ ├── globals.html │ │ │ ├── index.html │ │ │ ├── spAllocate_8c.html │ │ │ ├── spBuild_8c.html │ │ │ ├── spConfig_8h-source.html │ │ │ ├── spConfig_8h.html │ │ │ ├── spFactor_8c.html │ │ │ ├── spFortran_8c.html │ │ │ ├── spMatrix_8h-source.html │ │ │ ├── spMatrix_8h.html │ │ │ ├── spOutput_8c.html │ │ │ ├── spSolve_8c.html │ │ │ ├── spUtils_8c.html │ │ │ ├── structspTemplate-members.html │ │ │ └── structspTemplate.html │ │ └── latex │ │ │ ├── Makefile │ │ │ ├── annotated.tex │ │ │ ├── doxygen.sty │ │ │ ├── files.tex │ │ │ ├── refman.aux │ │ │ ├── refman.dvi │ │ │ ├── refman.idx │ │ │ ├── refman.log │ │ │ ├── refman.ps │ │ │ ├── refman.tex │ │ │ ├── refman.toc │ │ │ ├── spAllocate_8c.tex │ │ │ ├── spBuild_8c.aux │ │ │ ├── spBuild_8c.tex │ │ │ ├── spConfig_8h.aux │ │ │ ├── spConfig_8h.tex │ │ │ ├── spFactor_8c.aux │ │ │ ├── spFactor_8c.tex │ │ │ ├── spFortran_8c.aux │ │ │ ├── spFortran_8c.tex │ │ │ ├── spMatrix_8h.aux │ │ │ ├── spMatrix_8h.tex │ │ │ ├── spOutput_8c.aux │ │ │ ├── spOutput_8c.tex │ │ │ ├── spSolve_8c.aux │ │ │ ├── spSolve_8c.tex │ │ │ ├── spUtils_8c.aux │ │ │ ├── spUtils_8c.tex │ │ │ └── structspTemplate.tex │ │ ├── matrices │ │ ├── Makefile │ │ ├── Problematic │ │ │ ├── Readme │ │ │ ├── hp-knee.mat.gz │ │ │ ├── lower.mat.gz │ │ │ ├── mat10.mat.gz │ │ │ ├── mat9.mat.gz │ │ │ ├── moni.mat.gz │ │ │ └── upper.mat.gz │ │ ├── advice2806.mat.gz │ │ ├── advice3388.mat.gz │ │ ├── advice3776.mat.gz │ │ ├── advice587.mat.gz │ │ ├── advice920.mat.gz │ │ ├── cmat0.mat.gz │ │ ├── cmat1.mat.gz │ │ ├── cmat2.mat.gz │ │ ├── cmat3.mat.gz │ │ ├── cmat4.mat.gz │ │ ├── codecs0171.dc.mat.gz │ │ ├── codecs1062.dc.mat.gz │ │ ├── codecs1062.tr.mat.gz │ │ ├── codecs1073.dc.mat.gz │ │ ├── codecs1347.tr.mat.gz │ │ ├── codecs1977.dc.mat.gz │ │ ├── codecs1977.tr.mat.gz │ │ ├── codecs2655.dc.mat.gz │ │ ├── codecs2655.tr.mat.gz │ │ ├── codecs3462.dc.mat.gz │ │ ├── codecs3462.tr.mat.gz │ │ ├── codecs4812.dc.mat.gz │ │ ├── cplx110478.mat.gz │ │ ├── dec11290.mat.gz │ │ ├── divider-ckt.mat.gz │ │ ├── fdp300.mat.gz │ │ ├── mat-x.mat.gz │ │ ├── mat0.mat.gz │ │ ├── mat1.mat.gz │ │ ├── mat11.mat.gz │ │ ├── mat12.mat.gz │ │ ├── mat2.mat.gz │ │ ├── mat3.mat.gz │ │ ├── mat5.mat.gz │ │ ├── mat6.mat.gz │ │ ├── mat7.mat.gz │ │ ├── mat8.mat.gz │ │ ├── matXY.mat.gz │ │ ├── matrix4000.mat.gz │ │ ├── matx.mat.gz │ │ ├── mna1.mat.gz │ │ ├── mna2.mat.gz │ │ ├── mna3.mat.gz │ │ ├── mna4.mat.gz │ │ ├── mna5.mat.gz │ │ ├── mna6.mat.gz │ │ ├── rlx5355adc.dc.mat.gz │ │ ├── rlx5355adc.tr.mat.gz │ │ ├── rlxDAC.out.mat.gz │ │ ├── rlxDAC.tr.mat.gz │ │ ├── rlxDigFi.dc.mat.gz │ │ ├── rlxEPROM.tr.mat.gz │ │ ├── rlxInv.dc.mat.gz │ │ ├── rlxMem.tr.mat.gz │ │ ├── rlxRing.tr.mat.gz │ │ ├── rlxTImem.dc.mat.gz │ │ ├── rlxTImem.tr.mat.gz │ │ ├── sptrCheby.ac.mat.gz │ │ ├── sptrMantis.dc.mat.gz │ │ ├── sptrMcncChip2.tr.mat.gz │ │ ├── sptrMeyer.hb.mat.gz │ │ ├── sptrMondo.dc.mat.gz │ │ ├── sptrMondo.tr.mat.gz │ │ ├── sptrTcon11-16as.tr.mat.gz │ │ ├── sptrTcon11-78fs.tr.mat.gz │ │ ├── sptrXtal.ac.mat.gz │ │ ├── thschmid.mat.gz │ │ ├── zy1137.mat.gz │ │ ├── zy1195.mat.gz │ │ ├── zy3315.mat.gz │ │ └── zy450.mat.gz │ │ └── src │ │ ├── .#spRevision.1.1.1.1 │ │ ├── CMakeLists.txt │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── smpl-test.c │ │ ├── spAllocate.c │ │ ├── spBuild.c │ │ ├── spConfig.h │ │ ├── spDefs.h │ │ ├── spFactor.c │ │ ├── spFortran.c │ │ ├── spLicense │ │ ├── spMatrix.h │ │ ├── spOutput.c │ │ ├── spRevision │ │ ├── spSMP.c │ │ ├── spSolve.c │ │ ├── spSpice3.h │ │ ├── spTest.c │ │ └── spUtils.c ├── CMake │ ├── FindSPARSE.cmake │ └── LibFindMacros.cmake ├── CMakeLists.txt ├── Fortran │ ├── CMakeLists.txt │ └── stannspcg.f ├── Testing │ ├── CMakeLists.txt │ ├── Deformable │ │ ├── Input │ │ │ ├── all_exterior_faces.ebc │ │ │ ├── inflow_Descending_Aorta.ebc │ │ │ ├── inflow_Descending_Aorta.nbc │ │ │ ├── inputdataformatlab.dat │ │ │ ├── mapping.dat │ │ │ ├── outflow_Branch.ebc │ │ │ ├── outflow_Branch.nbc │ │ │ ├── outflow_Descending_Aorta.ebc │ │ │ ├── outflow_Descending_Aorta.nbc │ │ │ ├── the.connectivity │ │ │ ├── the.coordinates │ │ │ ├── the.supre │ │ │ ├── the.xadj │ │ │ ├── view_displacements.pht │ │ │ ├── wall.ebc │ │ │ ├── wall.nbc │ │ │ ├── wall_Branch.ebc │ │ │ ├── wall_Branch.nbc │ │ │ ├── wall_Descending_Aorta.ebc │ │ │ ├── wall_Descending_Aorta.nbc │ │ │ ├── wall_Descending_Aorta_Branch.ebc │ │ │ └── wall_Descending_Aorta_Branch.nbc │ │ └── ReferenceOutput │ │ │ ├── geombc.dat.1 │ │ │ └── restart.0.1 │ ├── Rigid │ │ ├── Input │ │ │ ├── all_exterior_faces.ebc │ │ │ ├── inflow_Descending_Aorta.ebc │ │ │ ├── inflow_Descending_Aorta.nbc │ │ │ ├── outflow_Branch.ebc │ │ │ ├── outflow_Branch.nbc │ │ │ ├── outflow_Descending_Aorta.ebc │ │ │ ├── outflow_Descending_Aorta.nbc │ │ │ ├── the.connectivity │ │ │ ├── the.coordinates │ │ │ ├── the.supre │ │ │ ├── the.xadj │ │ │ ├── wall.nbc │ │ │ ├── wall_Branch.ebc │ │ │ ├── wall_Branch.nbc │ │ │ ├── wall_Descending_Aorta.ebc │ │ │ ├── wall_Descending_Aorta.nbc │ │ │ ├── wall_Descending_Aorta_Branch.ebc │ │ │ └── wall_Descending_Aorta_Branch.nbc │ │ └── ReferenceOutput │ │ │ ├── geombc.dat.1 │ │ │ └── restart.0.1 │ └── RunPresolverAndCompareOutput.cmake ├── cmd.cxx ├── cmd.h ├── cvSolverIO.cxx ├── cvSolverIO.h ├── directsolve.c ├── displacements.cxx ├── helpers.cxx ├── supre-cmds.cxx └── supre.cxx ├── README.md ├── SuperBuild.cmake ├── attribution_CRIMSON_GUI.html ├── contributing.md ├── contributors.txt └── matlab ├── CRIMSON_readVTKPath.m └── CRIMSON_writeVTKPath.m /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Apps/Apps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/Apps.cmake -------------------------------------------------------------------------------- /Apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CMakeLists.txt -------------------------------------------------------------------------------- /Apps/CRIMSON/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/CMakeLists.txt -------------------------------------------------------------------------------- /Apps/CRIMSON/CRIMSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/CRIMSON.cpp -------------------------------------------------------------------------------- /Apps/CRIMSON/CRIMSON.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/CRIMSON.ini -------------------------------------------------------------------------------- /Apps/CRIMSON/CRIMSON.vcxproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/CRIMSON.vcxproj.user.in -------------------------------------------------------------------------------- /Apps/CRIMSON/JenkinsEnv.properties.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/JenkinsEnv.properties.in -------------------------------------------------------------------------------- /Apps/CRIMSON/icons/CRIMSON.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/icons/CRIMSON.aps -------------------------------------------------------------------------------- /Apps/CRIMSON/icons/CRIMSON.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/icons/CRIMSON.rc -------------------------------------------------------------------------------- /Apps/CRIMSON/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/icons/icon.icns -------------------------------------------------------------------------------- /Apps/CRIMSON/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/icons/icon.ico -------------------------------------------------------------------------------- /Apps/CRIMSON/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/icons/icon.png -------------------------------------------------------------------------------- /Apps/CRIMSON/splashscreen.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/splashscreen.ai -------------------------------------------------------------------------------- /Apps/CRIMSON/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/splashscreen.png -------------------------------------------------------------------------------- /Apps/CRIMSON/splashscreen.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/splashscreen.qrc -------------------------------------------------------------------------------- /Apps/CRIMSON/splashscreen_old.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/splashscreen_old.ai -------------------------------------------------------------------------------- /Apps/CRIMSON/splashscreen_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/splashscreen_old.png -------------------------------------------------------------------------------- /Apps/CRIMSON/startCRIMSON.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/startCRIMSON.bat.in -------------------------------------------------------------------------------- /Apps/CRIMSON/target_libraries.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/CRIMSON/target_libraries.cmake -------------------------------------------------------------------------------- /Apps/NetlistEditor/AUTHOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/AUTHOR -------------------------------------------------------------------------------- /Apps/NetlistEditor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/CMakeLists.txt -------------------------------------------------------------------------------- /Apps/NetlistEditor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/LICENSE -------------------------------------------------------------------------------- /Apps/NetlistEditor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/README -------------------------------------------------------------------------------- /Apps/NetlistEditor/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/THANKS -------------------------------------------------------------------------------- /Apps/NetlistEditor/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/TODO -------------------------------------------------------------------------------- /Apps/NetlistEditor/cmake/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/cmake/DS_Store -------------------------------------------------------------------------------- /Apps/NetlistEditor/cmake/MacOSXBundle_Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/cmake/MacOSXBundle_Info.plist.in -------------------------------------------------------------------------------- /Apps/NetlistEditor/cmake/MacOSXBundle_fixup_bundle.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/cmake/MacOSXBundle_fixup_bundle.cmake.in -------------------------------------------------------------------------------- /Apps/NetlistEditor/cmake/MacOSXBundle_locversion.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/cmake/MacOSXBundle_locversion.plist.in -------------------------------------------------------------------------------- /Apps/NetlistEditor/cmake/Modules/FindQwt5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/cmake/Modules/FindQwt5.cmake -------------------------------------------------------------------------------- /Apps/NetlistEditor/cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /Apps/NetlistEditor/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/config.h.in -------------------------------------------------------------------------------- /Apps/NetlistEditor/doxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/doxy.cfg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/CMakeLists.txt -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/boost-sapecng/edge_properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/boost-sapecng/edge_properties.hpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/boost-sapecng/grimbleby.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/boost-sapecng/grimbleby.hpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/boost-sapecng/mrt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/boost-sapecng/mrt.hpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/config.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/exception/sapecngexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/exception/sapecngexception.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/functor/README.rpoly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/functor/README.rpoly -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/functor/functor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/functor/functor.hpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/functor/rpoly-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/functor/rpoly-adapter.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/functor/rpoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/functor/rpoly.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/CRIMSONBCT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/CRIMSONBCT.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/CRIMSONBCT.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/CRIMSONBCT.qrc -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/CRIMSONBCT.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/CRIMSONBCT.rc -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/configdialog/configdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/configdialog/configdialog.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/configdialog/configdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/configdialog/configdialog.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/configdialog/configpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/configdialog/configpage.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/configdialog/configpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/configdialog/configpage.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/delegate.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/delegate.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/component.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/component.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/graphicsnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/graphicsnode.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/graphicsnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/graphicsnode.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/inode.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/item.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/item.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/label.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/label.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/metacircuit_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/metacircuit_thread.hpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/propertytextitem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/propertytextitem.hpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/schematiceditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/schematiceditor.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/schematiceditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/schematiceditor.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/schematicscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/schematicscene.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/schematicscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/schematicscene.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/schematicsceneparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/schematicsceneparser.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/schematicsceneparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/schematicsceneparser.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/schematicview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/schematicview.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/undoredocommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/undoredocommand.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/undoredocommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/undoredocommand.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/vpiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/vpiface.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/wire.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/editor/wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/editor/wire.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/extendedmdiarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/extendedmdiarea.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/functor/functor_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/functor/functor_traits.hpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/CRIMSONandroid2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/CRIMSONandroid2.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/bin.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/bringfront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/bringfront.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/configuration.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/copy.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/cross.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/cursor.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/cut.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/fit.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/font.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/grid.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/icon.icns -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/icon.ico -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/icon.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/info.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/label.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/license.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/mirror.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/new.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/newcmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/newcmp.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/node.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/open.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/pack.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/paste.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/print.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-128x128.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-16x16.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-16x16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-16x16.xpm -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-24x24.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-256x256.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-32x32.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-32x32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-32x32.xpm -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-48x48.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-64x64.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-ico.ico -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-splash-ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-splash-ng.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng-splash.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng.desktop -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng.icns -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qsapecng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qsapecng.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/qt-logo.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/redo.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/resolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/resolve.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/rotate.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/save.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/screenshots/ss-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/screenshots/ss-0.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/screenshots/ss-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/screenshots/ss-1.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/screenshots/ss-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/screenshots/ss-2.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/screenshots/ss-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/screenshots/ss-3.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/screenshots/ss-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/screenshots/ss-4.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/sendback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/sendback.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/ammeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/ammeter.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/ammeter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/ammeter.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/capacitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/capacitor.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/capacitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/capacitor.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/cccs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/cccs.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/cccs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/cccs.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/ccvs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/ccvs.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/ccvs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/ccvs.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/current.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/current.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/current.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/diode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/diode.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/diode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/diode.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/ground.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/ground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/ground.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/inductor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/inductor.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/inductor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/inductor.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/opampl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/opampl.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/opampl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/opampl.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/out.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/out.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/port.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/port.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/resistor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/resistor.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/resistor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/resistor.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/symbols.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/symbols.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/threeDNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/threeDNode.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/threeDNode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/threeDNode.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/transformer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/transformer.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/transformer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/transformer.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/userdef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/userdef.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/userdef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/userdef.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/vccs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/vccs.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/vccs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/vccs.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/vcvs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/vcvs.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/vcvs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/vcvs.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/voltage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/voltage.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/voltage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/voltage.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/voltmeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/voltmeter.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/voltmeter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/voltmeter.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/wire.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/wire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/wire.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/wirecross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/wirecross.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/wirecross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/wirecross.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/xccs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/xccs.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/symbols/xcvs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/symbols/xcvs.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/threeDNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/threeDNode.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/undo.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/wave.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/zoomin.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/zoomnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/zoomnormal.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/images/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/images/zoomout.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qlogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/qlogger.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qsapecng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/qsapecng.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qsapecng.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/qsapecng.qrc -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qsapecng.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/qsapecng.rc -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qsapecngwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/qsapecngwindow.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qsapecngwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/qsapecngwindow.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtAbstractEditorFactoryBase: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtAbstractPropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtAbstractPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtBoolPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtBrowserItem: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtButtonPropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qtbuttonpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtCharEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtCharPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtCheckBoxFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtColorEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtColorPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtCursorEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtCursorPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtDateEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtDatePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtDateTimeEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtDateTimePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtDoublePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtDoubleSpinBoxFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtEnumEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtEnumPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtFlagPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtFontEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtFontPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtGroupBoxPropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qtgroupboxpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtGroupPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtIntPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtKeySequenceEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtKeySequencePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtLineEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtLocalePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtPointFPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtPointPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtProperty: -------------------------------------------------------------------------------- 1 | #include "qtpropertybrowser.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtRectFPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtRectPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtScrollBarFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtSizeFPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtSizePolicyPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtSizePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtSliderFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtSpinBoxFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtStringPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtTimeEditFactory: -------------------------------------------------------------------------------- 1 | #include "qteditorfactory.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtTimePropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtpropertymanager.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtTreePropertyBrowser: -------------------------------------------------------------------------------- 1 | #include "qttreepropertybrowser.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtVariantEditorFactory: -------------------------------------------------------------------------------- 1 | #include "qtvariantproperty.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtVariantProperty: -------------------------------------------------------------------------------- 1 | #include "qtvariantproperty.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/qtsolutions/qtpropertyeditor/QtVariantPropertyManager: -------------------------------------------------------------------------------- 1 | #include "qtvariantproperty.h" 2 | -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/settings.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/settings.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/sidebarmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/sidebarmodel.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/sidebarmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/sidebarmodel.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/sidebarview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/sidebarview.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/sidebarview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/sidebarview.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/workplane/workplane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/workplane/workplane.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/gui/workplane/workplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/gui/workplane/workplane.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/images/sapecng-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/images/sapecng-16x16.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/images/sapecng-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/images/sapecng-32x32.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/images/sapecng-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/images/sapecng-64x64.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/images/sapecng-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/images/sapecng-splash.png -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/images/sapecng.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/images/sapecng.ico -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/images/sapecng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/images/sapecng.svg -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/logger/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/logger/logger.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/logger/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/logger/logger.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/logger/logpolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/logger/logpolicy.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/model/circuit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/model/circuit.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/model/circuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/model/circuit.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/model/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/model/graph.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/model/metacircuit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/model/metacircuit.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/model/metacircuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/model/metacircuit.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/parser/crc_circuit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/parser/crc_circuit.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/parser/crc_circuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/parser/crc_circuit.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/parser/ir_circuit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/parser/ir_circuit.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/parser/ir_circuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/parser/ir_circuit.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/parser/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/parser/parser.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/parser/parser_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/parser/parser_factory.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/stuff.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/stuff.dox -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/utility/boilerplateScripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/utility/boilerplateScripts.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/utility/qsapecngUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/utility/qsapecngUtility.cpp -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/utility/qsapecngUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/utility/qsapecngUtility.h -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/utility/strings.cpp: -------------------------------------------------------------------------------- 1 | #include "strings.h" -------------------------------------------------------------------------------- /Apps/NetlistEditor/src/utility/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Apps/NetlistEditor/src/utility/strings.h -------------------------------------------------------------------------------- /CMake/CRIMSON.vcxproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/CRIMSON.vcxproj.user.in -------------------------------------------------------------------------------- /CMake/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/CTestCustom.cmake.in -------------------------------------------------------------------------------- /CMake/DeployQt5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/DeployQt5.cmake -------------------------------------------------------------------------------- /CMake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/FindEigen3.cmake -------------------------------------------------------------------------------- /CMake/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/FindFFTW.cmake -------------------------------------------------------------------------------- /CMake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/FindGSL.cmake -------------------------------------------------------------------------------- /CMake/FindMach7.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/FindMach7.cmake -------------------------------------------------------------------------------- /CMake/FindOCC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/FindOCC.cmake -------------------------------------------------------------------------------- /CMake/FindQtPropertyBrowser.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/FindQtPropertyBrowser.cmake -------------------------------------------------------------------------------- /CMake/FindWM5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/FindWM5.cmake -------------------------------------------------------------------------------- /CMake/MacroEmptyExternalProject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/MacroEmptyExternalProject.cmake -------------------------------------------------------------------------------- /CMake/PackageDepends/MITK_Eigen3_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/PackageDepends/MITK_Eigen3_Config.cmake -------------------------------------------------------------------------------- /CMake/PackageDepends/MITK_FFTW_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/PackageDepends/MITK_FFTW_Config.cmake -------------------------------------------------------------------------------- /CMake/PackageDepends/MITK_GSL_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/PackageDepends/MITK_GSL_Config.cmake -------------------------------------------------------------------------------- /CMake/PackageDepends/MITK_Mach7_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/PackageDepends/MITK_Mach7_Config.cmake -------------------------------------------------------------------------------- /CMake/PackageDepends/MITK_OCC_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/PackageDepends/MITK_OCC_Config.cmake -------------------------------------------------------------------------------- /CMake/PackageDepends/MITK_QtPropertyBrowser_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/PackageDepends/MITK_QtPropertyBrowser_Config.cmake -------------------------------------------------------------------------------- /CMake/PackageDepends/MITK_WM5_Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/PackageDepends/MITK_WM5_Config.cmake -------------------------------------------------------------------------------- /CMake/crimsonFunctionCreateBlueBerryApplication.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/crimsonFunctionCreateBlueBerryApplication.cmake -------------------------------------------------------------------------------- /CMake/crimsonFunctionExternalPythonBuildStep.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMake/crimsonFunctionExternalPythonBuildStep.cmake -------------------------------------------------------------------------------- /CMakeExternals/BuildOneConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/BuildOneConfiguration.cmake -------------------------------------------------------------------------------- /CMakeExternals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeExternals/GSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/GSL.cmake -------------------------------------------------------------------------------- /CMakeExternals/MITK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/MITK.cmake -------------------------------------------------------------------------------- /CMakeExternals/OCC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/OCC.cmake -------------------------------------------------------------------------------- /CMakeExternals/OCC_6.9.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/OCC_6.9.1.patch -------------------------------------------------------------------------------- /CMakeExternals/PythonModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/PythonModules.cmake -------------------------------------------------------------------------------- /CMakeExternals/QtPropertyBrowser.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/QtPropertyBrowser.cmake -------------------------------------------------------------------------------- /CMakeExternals/TBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/TBB.cmake -------------------------------------------------------------------------------- /CMakeExternals/WM5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/WM5.cmake -------------------------------------------------------------------------------- /CMakeExternals/flowsolver.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/flowsolver.cmake -------------------------------------------------------------------------------- /CMakeExternals/freetype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/freetype.cmake -------------------------------------------------------------------------------- /CMakeExternals/freetype_win_dll.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/freetype_win_dll.patch -------------------------------------------------------------------------------- /CMakeExternals/parse.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/parse.cmake -------------------------------------------------------------------------------- /CMakeExternals/presolver.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeExternals/presolver.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Documentation/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/.gitattributes -------------------------------------------------------------------------------- /Documentation/BuildConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/BuildConfiguration.md -------------------------------------------------------------------------------- /Documentation/Images/cmake.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/cmake.PNG -------------------------------------------------------------------------------- /Documentation/Images/cmake2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/cmake2.PNG -------------------------------------------------------------------------------- /Documentation/Images/cmake3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/cmake3.PNG -------------------------------------------------------------------------------- /Documentation/Images/folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/folders.png -------------------------------------------------------------------------------- /Documentation/Images/sweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/sweep.png -------------------------------------------------------------------------------- /Documentation/Images/vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/vs.png -------------------------------------------------------------------------------- /Documentation/Images/vs1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/vs1.PNG -------------------------------------------------------------------------------- /Documentation/Images/vs2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/vs2.PNG -------------------------------------------------------------------------------- /Documentation/Images/vs3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/vs3.PNG -------------------------------------------------------------------------------- /Documentation/Images/vs4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/vs4.PNG -------------------------------------------------------------------------------- /Documentation/Images/vs5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/Images/vs5.PNG -------------------------------------------------------------------------------- /Documentation/SystemRequirementsAndRequiredSoftware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Documentation/SystemRequirementsAndRequiredSoftware.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Modules/AsyncTask/AsyncTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/AsyncTask/AsyncTask.cpp -------------------------------------------------------------------------------- /Modules/AsyncTask/AsyncTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/AsyncTask/AsyncTask.h -------------------------------------------------------------------------------- /Modules/AsyncTask/AsyncTaskWithResult.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/AsyncTask/AsyncTaskWithResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/AsyncTask/AsyncTaskWithResult.h -------------------------------------------------------------------------------- /Modules/AsyncTask/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/AsyncTask/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/AsyncTask/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/AsyncTask/files.cmake -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/DataManagement/MeshData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/DataManagement/MeshData.cpp -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/DataManagement/MeshData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/DataManagement/MeshData.h -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/ExtensionPoint/predicates.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/ExtensionPoint/predicates.cxx -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/ExtensionPoint/tetgen.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/ExtensionPoint/tetgen.cxx -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/ExtensionPoint/tetgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/ExtensionPoint/tetgen.h -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/IO/MeshDataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/IO/MeshDataIO.cpp -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/IO/MeshDataIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/IO/MeshDataIO.h -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/IO/MeshingKernelIOMimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/IO/MeshingKernelIOMimeTypes.h -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/IO/MeshingParametersBoostIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/IO/MeshingParametersBoostIO.h -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/IO/MeshingParametersDataIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/IO/MeshingParametersDataIO.h -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/Rendering/MeshDataMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/Rendering/MeshDataMapper.cpp -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/Rendering/MeshDataMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/Rendering/MeshDataMapper.h -------------------------------------------------------------------------------- /Modules/CGALVMTKMeshingKernel/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CGALVMTKMeshingKernel/files.cmake -------------------------------------------------------------------------------- /Modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/CRIMSONUtils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CRIMSONUtils/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/CRIMSONUtils/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CRIMSONUtils/files.cmake -------------------------------------------------------------------------------- /Modules/CRIMSONUtils/include/ImmutableRanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CRIMSONUtils/include/ImmutableRanges.h -------------------------------------------------------------------------------- /Modules/CRIMSONUtils/include/NodePredicateDerivation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CRIMSONUtils/include/NodePredicateDerivation.h -------------------------------------------------------------------------------- /Modules/CRIMSONUtils/include/NodePredicateNone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CRIMSONUtils/include/NodePredicateNone.h -------------------------------------------------------------------------------- /Modules/CRIMSONUtils/src/NodePredicateDerivation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/CRIMSONUtils/src/NodePredicateDerivation.cpp -------------------------------------------------------------------------------- /Modules/PCMRIKernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/PCMRIKernel/DataManagement/PCMRIData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/DataManagement/PCMRIData.cpp -------------------------------------------------------------------------------- /Modules/PCMRIKernel/DataManagement/PCMRIData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/DataManagement/PCMRIData.h -------------------------------------------------------------------------------- /Modules/PCMRIKernel/Documentation/doxygen/modules.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/Documentation/doxygen/modules.dox -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/IPCMRIKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/IPCMRIKernel.cpp -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/IPCMRIKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/IPCMRIKernel.h -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/internal/BSplines.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/internal/BSplines.hxx -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/internal/BsplineGrid.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/internal/BsplineGrid.hxx -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/internal/Image_tools.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/internal/Image_tools.hxx -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/internal/Mesh_tools.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/internal/Mesh_tools.hxx -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/internal/Point_tools.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/internal/Point_tools.hxx -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/internal/geoCellBase.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/internal/geoCellBase.hxx -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/internal/geoTriangle.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/internal/geoTriangle.hxx -------------------------------------------------------------------------------- /Modules/PCMRIKernel/ExtensionPoint/internal/myTimer.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/ExtensionPoint/internal/myTimer.hxx -------------------------------------------------------------------------------- /Modules/PCMRIKernel/IO/Multi_ArraySerialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/IO/Multi_ArraySerialize.h -------------------------------------------------------------------------------- /Modules/PCMRIKernel/IO/PCMRIDataBoostIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/IO/PCMRIDataBoostIO.h -------------------------------------------------------------------------------- /Modules/PCMRIKernel/IO/PCMRIDataCoreObjectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/IO/PCMRIDataCoreObjectFactory.cpp -------------------------------------------------------------------------------- /Modules/PCMRIKernel/IO/PCMRIDataCoreObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/IO/PCMRIDataCoreObjectFactory.h -------------------------------------------------------------------------------- /Modules/PCMRIKernel/IO/PCMRIDataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/IO/PCMRIDataIO.cpp -------------------------------------------------------------------------------- /Modules/PCMRIKernel/IO/PCMRIDataIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/IO/PCMRIDataIO.h -------------------------------------------------------------------------------- /Modules/PCMRIKernel/IO/PCMRIKernelIOMimeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/IO/PCMRIKernelIOMimeTypes.cpp -------------------------------------------------------------------------------- /Modules/PCMRIKernel/IO/PCMRIKernelIOMimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/IO/PCMRIKernelIOMimeTypes.h -------------------------------------------------------------------------------- /Modules/PCMRIKernel/Rendering/PCMRIDataMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/Rendering/PCMRIDataMapper.cpp -------------------------------------------------------------------------------- /Modules/PCMRIKernel/Rendering/PCMRIDataMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/Rendering/PCMRIDataMapper.h -------------------------------------------------------------------------------- /Modules/PCMRIKernel/Testing/TestData/ref.mhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/Testing/TestData/ref.mhd -------------------------------------------------------------------------------- /Modules/PCMRIKernel/Testing/TestData/ref.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/Testing/TestData/ref.raw -------------------------------------------------------------------------------- /Modules/PCMRIKernel/Testing/TestData/test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/Testing/TestData/test_data.h -------------------------------------------------------------------------------- /Modules/PCMRIKernel/Testing/TestData/vector_image1.mhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/Testing/TestData/vector_image1.mhd -------------------------------------------------------------------------------- /Modules/PCMRIKernel/Testing/TestData/vector_image1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/Testing/TestData/vector_image1.raw -------------------------------------------------------------------------------- /Modules/PCMRIKernel/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PCMRIKernel/files.cmake -------------------------------------------------------------------------------- /Modules/PythonSolverSetupService/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PythonSolverSetupService/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/PythonSolverSetupService/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PythonSolverSetupService/files.cmake -------------------------------------------------------------------------------- /Modules/PythonSolverSetupService/src/PythonFaceDataImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PythonSolverSetupService/src/PythonFaceDataImpl.cpp -------------------------------------------------------------------------------- /Modules/PythonSolverSetupService/src/PythonMaterialData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/PythonSolverSetupService/src/PythonQtWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/PythonSolverSetupService/src/PythonQtWrappers.h -------------------------------------------------------------------------------- /Modules/SolidKernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/SolidKernel/DataManagement/DiscreteSolidData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/DataManagement/DiscreteSolidData.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/DataManagement/DiscreteSolidData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/DataManagement/DiscreteSolidData.h -------------------------------------------------------------------------------- /Modules/SolidKernel/DataManagement/OCCBRepData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/DataManagement/OCCBRepData.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/DataManagement/OCCBRepData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/DataManagement/OCCBRepData.h -------------------------------------------------------------------------------- /Modules/SolidKernel/DataManagement/SolidData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/DataManagement/SolidData.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/DataManagement/SolidData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/DataManagement/SolidData.h -------------------------------------------------------------------------------- /Modules/SolidKernel/DataManagement/vtkGetBoundaryFaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/DataManagement/vtkGetBoundaryFaces.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/DataManagement/vtkGetBoundaryFaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/DataManagement/vtkGetBoundaryFaces.h -------------------------------------------------------------------------------- /Modules/SolidKernel/Documentation/doxygen/modules.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/Documentation/doxygen/modules.dox -------------------------------------------------------------------------------- /Modules/SolidKernel/ExtensionPoint/FaceIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/ExtensionPoint/FaceIdentifier.h -------------------------------------------------------------------------------- /Modules/SolidKernel/ExtensionPoint/FaceIdentifierBoostIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/ExtensionPoint/FaceIdentifierBoostIO.h -------------------------------------------------------------------------------- /Modules/SolidKernel/ExtensionPoint/ISolidModelKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/ExtensionPoint/ISolidModelKernel.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/ExtensionPoint/ISolidModelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/ExtensionPoint/ISolidModelKernel.h -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/DiscreteDataIOMimeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/DiscreteDataIOMimeTypes.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/DiscreteDataIOMimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/DiscreteDataIOMimeTypes.h -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/DiscreteSolidDataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/DiscreteSolidDataIO.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/DiscreteSolidDataIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/DiscreteSolidDataIO.h -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/OCCBRepDataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/OCCBRepDataIO.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/OCCBRepDataIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/OCCBRepDataIO.h -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/OpenCascadeSolidKernelIOMimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/OpenCascadeSolidKernelIOMimeTypes.h -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/SolidDataCoreObjectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/SolidDataCoreObjectFactory.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/SolidDataCoreObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/SolidDataCoreObjectFactory.h -------------------------------------------------------------------------------- /Modules/SolidKernel/IO/SolidDataFaceInfoBoostIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/IO/SolidDataFaceInfoBoostIO.h -------------------------------------------------------------------------------- /Modules/SolidKernel/Rendering/SolidDataMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/Rendering/SolidDataMapper.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/Rendering/SolidDataMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/Rendering/SolidDataMapper.h -------------------------------------------------------------------------------- /Modules/SolidKernel/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/Testing/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/SolidKernel/Testing/OCCBlendingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/Testing/OCCBlendingTest.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/Testing/OCCLoftingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/Testing/OCCLoftingTest.cpp -------------------------------------------------------------------------------- /Modules/SolidKernel/Testing/OCCTestingConfig.h.in: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define OCC_TEST_DATA_PATH "@CMAKE_CURRENT_LIST_DIR@/TestData" -------------------------------------------------------------------------------- /Modules/SolidKernel/Testing/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/Testing/files.cmake -------------------------------------------------------------------------------- /Modules/SolidKernel/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolidKernel/files.cmake -------------------------------------------------------------------------------- /Modules/SolverSetupService/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/SolverSetupService/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/files.cmake -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/FaceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/FaceData.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/IBoundaryCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/IBoundaryCondition.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/IBoundaryConditionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/IBoundaryConditionSet.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/IMaterialData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/IMaterialData.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/ISolverParametersData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/ISolverParametersData.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/ISolverSetupManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/ISolverSetupManager.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/ISolverSetupService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/ISolverSetupService.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/ISolverStudyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/ISolverStudyData.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/QtPropertyStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/QtPropertyStorage.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/SolutionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/SolutionData.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/include/SolverSetupUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/include/SolverSetupUtils.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/src/IO/SolutionDataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/src/IO/SolutionDataIO.cpp -------------------------------------------------------------------------------- /Modules/SolverSetupService/src/IO/SolutionDataIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/src/IO/SolutionDataIO.h -------------------------------------------------------------------------------- /Modules/SolverSetupService/src/SolutionData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/SolverSetupService/src/SolutionData.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/CMakeLists.txt -------------------------------------------------------------------------------- /Modules/VesselTree/DataManagement/VesselForestData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/DataManagement/VesselForestData.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/DataManagement/VesselForestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/DataManagement/VesselForestData.h -------------------------------------------------------------------------------- /Modules/VesselTree/DataManagement/VesselPathAbstractData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/DataManagement/VesselPathAbstractData.h -------------------------------------------------------------------------------- /Modules/VesselTree/DataManagement/VesselPathOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/DataManagement/VesselPathOperation.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/DataManagement/VesselPathOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/DataManagement/VesselPathOperation.h -------------------------------------------------------------------------------- /Modules/VesselTree/IO/IOUtilDataSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/IO/IOUtilDataSerializer.h -------------------------------------------------------------------------------- /Modules/VesselTree/IO/VesselForestCoreObjectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/IO/VesselForestCoreObjectFactory.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/IO/VesselForestCoreObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/IO/VesselForestCoreObjectFactory.h -------------------------------------------------------------------------------- /Modules/VesselTree/IO/VesselForestDataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/IO/VesselForestDataIO.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/IO/VesselForestDataIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/IO/VesselForestDataIO.h -------------------------------------------------------------------------------- /Modules/VesselTree/IO/VesselTreeIOMimeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/IO/VesselTreeIOMimeTypes.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/IO/VesselTreeIOMimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/IO/VesselTreeIOMimeTypes.h -------------------------------------------------------------------------------- /Modules/VesselTree/IO/vtkParametricSplineVesselPathIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/IO/vtkParametricSplineVesselPathIO.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/IO/vtkParametricSplineVesselPathIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/IO/vtkParametricSplineVesselPathIO.h -------------------------------------------------------------------------------- /Modules/VesselTree/Interactions/VesselPathInteractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Interactions/VesselPathInteractor.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/Interactions/VesselPathInteractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Interactions/VesselPathInteractor.h -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_addpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_addpoint.png -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_addpoint.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_addpoint.psd -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_base.png -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_insertpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_insertpoint.png -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_insertpoint.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_insertpoint.psd -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_insertpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_insertpoint.svg -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_movepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_movepoint.png -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_movepoint.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_movepoint.psd -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_normal.png -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_removepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_removepoint.png -------------------------------------------------------------------------------- /Modules/VesselTree/Resources/cursor_removepoint.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Resources/cursor_removepoint.psd -------------------------------------------------------------------------------- /Modules/VesselTree/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | MITK_CREATE_MODULE_TESTS() -------------------------------------------------------------------------------- /Modules/VesselTree/Testing/VesselPathDataTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Testing/VesselPathDataTest.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/Testing/VesselTreeDataTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Testing/VesselTreeDataTest.cpp -------------------------------------------------------------------------------- /Modules/VesselTree/Testing/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Testing/files.cmake -------------------------------------------------------------------------------- /Modules/VesselTree/Utilities/vesselTreeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/Utilities/vesselTreeUtils.h -------------------------------------------------------------------------------- /Modules/VesselTree/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Modules/VesselTree/files.cmake -------------------------------------------------------------------------------- /Patch/CGAL-4.4/cmake/modules/CGAL_TweakFindBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/CGAL-4.4/cmake/modules/CGAL_TweakFindBoost.cmake -------------------------------------------------------------------------------- /Patch/CMake 3.0/InstallRequiredSystemLibraries.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/CMake 3.0/InstallRequiredSystemLibraries.cmake -------------------------------------------------------------------------------- /Patch/CTK/CMake/ctkMacroBuildPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/CTK/CMake/ctkMacroBuildPlugin.cmake -------------------------------------------------------------------------------- /Patch/CTK/qRestAPI/qRestAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/CTK/qRestAPI/qRestAPI.cpp -------------------------------------------------------------------------------- /Patch/CTK/qRestAPI/qRestAPI_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/CTK/qRestAPI/qRestAPI_p.h -------------------------------------------------------------------------------- /Patch/ITK/Modules/ThirdParty/VNL/src/vxl/vcl/vcl_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/ITK/Modules/ThirdParty/VNL/src/vxl/vcl/vcl_compiler.h -------------------------------------------------------------------------------- /Patch/OpenCASCADE/TKPCAF_MSVS_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/OpenCASCADE/TKPCAF_MSVS_fix.py -------------------------------------------------------------------------------- /Patch/OpenCASCADE/src/BSplCLib/BSplCLib.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/OpenCASCADE/src/BSplCLib/BSplCLib.cxx -------------------------------------------------------------------------------- /Patch/Qwt/src/qwt_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/Qwt/src/qwt_global.h -------------------------------------------------------------------------------- /Patch/VTK/Common/DataModel/vtkTriangle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/VTK/Common/DataModel/vtkTriangle.cxx -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/CMakeLists.txt -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/src/CMakeLists.txt -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/QDoubleSpinBoxG.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/QDoubleSpinBoxG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/src/QDoubleSpinBoxG.h -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/qteditorfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/src/qteditorfactory.cpp -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/qteditorfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/src/qteditorfactory.h -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/qtpropertybrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/src/qtpropertybrowser.h -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/qtpropertymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/src/qtpropertymanager.cpp -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/qtpropertymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/src/qtpropertymanager.h -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/qtvariantproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/src/qtvariantproperty.cpp -------------------------------------------------------------------------------- /Patch/commontk_QtPropertyBrowser/src/qtvariantproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/commontk_QtPropertyBrowser/src/qtvariantproperty.h -------------------------------------------------------------------------------- /Patch/opencascade-6.8.0/adm/cmake/TKIVtk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/opencascade-6.8.0/adm/cmake/TKIVtk/CMakeLists.txt -------------------------------------------------------------------------------- /Patch/opencascade-6.8.0/adm/cmake/TKIVtkDraw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/opencascade-6.8.0/adm/cmake/TKIVtkDraw/CMakeLists.txt -------------------------------------------------------------------------------- /Patch/opencascade-6.8.0/adm/templates/vtk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/opencascade-6.8.0/adm/templates/vtk.cmake -------------------------------------------------------------------------------- /Patch/opencascade-6.9.0/src/BSplCLib/BSplCLib.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Patch/opencascade-6.9.0/src/BSplCLib/BSplCLib.cxx -------------------------------------------------------------------------------- /Plugins/Plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/Plugins.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManager/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManager/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManager/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManager/manifest_headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManager/manifest_headers.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManager/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManager/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManager/src/AsyncTaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManager/src/AsyncTaskManager.cpp -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManager/src/AsyncTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManager/src/AsyncTaskManager.h -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManager/src/CompositeTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManager/src/CompositeTask.cpp -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManager/src/CompositeTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManager/src/CompositeTask.h -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManager/src/QAsyncTaskAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManager/src/QAsyncTaskAdapter.h -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManagerView/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManagerView/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManagerView/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManagerView/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.AsyncTaskManagerView/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.AsyncTaskManagerView/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/manifest_headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/manifest_headers.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/resources/CRIMSON-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/resources/CRIMSON-logo.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/resources/KCL-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/resources/KCL-logo.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/resources/icons/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/resources/icons/checkbox.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/resources/icons/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/resources/icons/down_arrow.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/resources/icons/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/resources/icons/handle.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/resources/logo.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/resources/logo.qrc -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/resources/vmStyle-tab.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/resources/vmStyle-tab.qss -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/resources/vmStyle.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/resources/vmStyle.qrc -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/resources/vmStyle.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/resources/vmStyle.qss -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONApplication.cpp -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONApplication.h -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONVersion.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONVersion.h.in -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONWorkflowWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONWorkflowWidget.cpp -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONWorkflowWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/src/CRIMSONWorkflowWidget.h -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/src/PopupWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/src/PopupWidget.cpp -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/src/PopupWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/src/PopupWidget.h -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.CRIMSONApp/src/PopupWidget_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.CRIMSONApp/src/PopupWidget_p.h -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.HierarchyManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.HierarchyManager/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.HierarchyManager/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.HierarchyManager/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.HierarchyManager/manifest_headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.HierarchyManager/manifest_headers.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.HierarchyManager/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.HierarchyManager/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.HierarchyManager/src/HierarchyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.HierarchyManager/src/HierarchyManager.cpp -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.HierarchyManager/src/HierarchyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.HierarchyManager/src/HierarchyManager.h -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/manifest_headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/manifest_headers.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/SolverSetup.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/SolverSetup.qrc -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/bc.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/bc.psd -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/bcs.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/bcs.psd -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/gear.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/icons/add.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/icons/open.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/icons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/icons/remove.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/root.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/root.psd -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/ss.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/ss.psd -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/resources/study.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/resources/study.psd -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/src/SolverSetupNodeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/src/SolverSetupNodeTypes.cpp -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetup/src/SolverSetupNodeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetup/src/SolverSetupNodeTypes.h -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetupPython/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetupPython/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetupPython/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetupPython/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetupPython/manifest_headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetupPython/manifest_headers.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetupPython/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetupPython/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetupView/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetupView/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetupView/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetupView/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetupView/manifest_headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetupView/manifest_headers.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetupView/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetupView/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.SolverSetupView/resources/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.SolverSetupView/resources/icons/up.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VascularModeling.Eager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VascularModeling.Eager/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VascularModeling.Eager/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VascularModeling.Eager/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VascularModeling.Eager/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VascularModeling.Eager/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VascularModeling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VascularModeling/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VascularModeling/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VascularModeling/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VascularModeling/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VascularModeling/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing.Eager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing.Eager/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing.Eager/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing.Eager/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing.Eager/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing.Eager/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing/files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing/files.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing/manifest_headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing/manifest_headers.cmake -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing/plugin.xml -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing/resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing/resources/info.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing/resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing/resources/refresh.png -------------------------------------------------------------------------------- /Plugins/uk.ac.kcl.VesselMeshing/resources/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Plugins/uk.ac.kcl.VesselMeshing/resources/stop.png -------------------------------------------------------------------------------- /Presolver/3rdParty/nspcg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/nspcg/CMakeLists.txt -------------------------------------------------------------------------------- /Presolver/3rdParty/nspcg/nspcg1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/nspcg/nspcg1.f -------------------------------------------------------------------------------- /Presolver/3rdParty/nspcg/nspcg2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/nspcg/nspcg2.f -------------------------------------------------------------------------------- /Presolver/3rdParty/nspcg/nspcg3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/nspcg/nspcg3.f -------------------------------------------------------------------------------- /Presolver/3rdParty/nspcg/nspcg4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/nspcg/nspcg4.f -------------------------------------------------------------------------------- /Presolver/3rdParty/nspcg/nspcg5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/nspcg/nspcg5.f -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/doc/spDoc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/doc/spDoc.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/annotated.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/doxygen.css -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/doxygen.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/files.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_0.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_1.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_10.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_11.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_12.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_13.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_14.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_15.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_16.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_17.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_18.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_19.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_2.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_20.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_21.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_22.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_3.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_4.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_5.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_6.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_7.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_8.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/form_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/form_9.png -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/formula.repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/formula.repository -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/globals.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/index.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/spAllocate_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/spAllocate_8c.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/spBuild_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/spBuild_8c.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/spConfig_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/spConfig_8h.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/spFactor_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/spFactor_8c.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/spFortran_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/spFortran_8c.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/spMatrix_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/spMatrix_8h.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/spOutput_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/spOutput_8c.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/spSolve_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/spSolve_8c.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/spUtils_8c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/spUtils_8c.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/html/structspTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/html/structspTemplate.html -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/Makefile -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/annotated.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/annotated.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/doxygen.sty -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/files.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/files.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/refman.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/refman.aux -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/refman.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/refman.dvi -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/refman.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/refman.idx -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/refman.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/refman.log -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/refman.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/refman.ps -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/refman.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/refman.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/refman.toc -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spAllocate_8c.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spAllocate_8c.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spBuild_8c.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spBuild_8c.aux -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spBuild_8c.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spBuild_8c.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spConfig_8h.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spConfig_8h.aux -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spConfig_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spConfig_8h.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spFactor_8c.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spFactor_8c.aux -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spFactor_8c.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spFactor_8c.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spFortran_8c.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spFortran_8c.aux -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spFortran_8c.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spFortran_8c.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spMatrix_8h.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spMatrix_8h.aux -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spMatrix_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spMatrix_8h.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spOutput_8c.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spOutput_8c.aux -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spOutput_8c.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spOutput_8c.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spSolve_8c.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spSolve_8c.aux -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spSolve_8c.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spSolve_8c.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spUtils_8c.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spUtils_8c.aux -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/spUtils_8c.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/spUtils_8c.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/dox/latex/structspTemplate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/dox/latex/structspTemplate.tex -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/Makefile -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/Problematic/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/Problematic/Readme -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/advice2806.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/advice2806.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/advice3388.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/advice3388.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/advice3776.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/advice3776.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/advice587.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/advice587.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/advice920.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/advice920.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/cmat0.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/cmat0.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/cmat1.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/cmat1.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/cmat2.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/cmat2.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/cmat3.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/cmat3.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/cmat4.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/cmat4.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs0171.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs0171.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs1062.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs1062.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs1062.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs1062.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs1073.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs1073.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs1347.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs1347.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs1977.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs1977.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs1977.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs1977.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs2655.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs2655.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs2655.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs2655.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs3462.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs3462.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs3462.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs3462.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/codecs4812.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/codecs4812.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/cplx110478.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/cplx110478.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/dec11290.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/dec11290.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/divider-ckt.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/divider-ckt.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/fdp300.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/fdp300.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat-x.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat-x.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat0.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat0.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat1.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat1.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat11.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat11.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat12.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat12.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat2.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat2.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat3.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat3.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat5.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat5.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat6.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat6.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat7.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat7.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mat8.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mat8.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/matXY.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/matXY.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/matrix4000.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/matrix4000.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/matx.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/matx.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mna1.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mna1.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mna2.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mna2.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mna3.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mna3.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mna4.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mna4.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mna5.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mna5.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/mna6.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/mna6.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlx5355adc.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlx5355adc.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlx5355adc.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlx5355adc.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlxDAC.out.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlxDAC.out.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlxDAC.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlxDAC.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlxDigFi.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlxDigFi.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlxEPROM.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlxEPROM.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlxInv.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlxInv.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlxMem.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlxMem.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlxRing.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlxRing.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlxTImem.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlxTImem.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/rlxTImem.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/rlxTImem.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/sptrCheby.ac.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/sptrCheby.ac.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/sptrMantis.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/sptrMantis.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/sptrMeyer.hb.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/sptrMeyer.hb.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/sptrMondo.dc.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/sptrMondo.dc.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/sptrMondo.tr.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/sptrMondo.tr.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/sptrXtal.ac.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/sptrXtal.ac.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/thschmid.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/thschmid.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/zy1137.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/zy1137.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/zy1195.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/zy1195.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/zy3315.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/zy3315.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/matrices/zy450.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/matrices/zy450.mat.gz -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/.#spRevision.1.1.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/.#spRevision.1.1.1.1 -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/CMakeLists.txt -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/Doxyfile -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/Makefile -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/smpl-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/smpl-test.c -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spAllocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spAllocate.c -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spBuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spBuild.c -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spConfig.h -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spDefs.h -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spFactor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spFactor.c -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spFortran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spFortran.c -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spLicense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spLicense -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spMatrix.h -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spOutput.c -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spRevision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spRevision -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spSMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spSMP.c -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spSolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spSolve.c -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spSpice3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spSpice3.h -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spTest.c -------------------------------------------------------------------------------- /Presolver/3rdParty/sparse/src/spUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/3rdParty/sparse/src/spUtils.c -------------------------------------------------------------------------------- /Presolver/CMake/FindSPARSE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/CMake/FindSPARSE.cmake -------------------------------------------------------------------------------- /Presolver/CMake/LibFindMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/CMake/LibFindMacros.cmake -------------------------------------------------------------------------------- /Presolver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/CMakeLists.txt -------------------------------------------------------------------------------- /Presolver/Fortran/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Fortran/CMakeLists.txt -------------------------------------------------------------------------------- /Presolver/Fortran/stannspcg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Fortran/stannspcg.f -------------------------------------------------------------------------------- /Presolver/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/CMakeLists.txt -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/mapping.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/mapping.dat -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/outflow_Branch.ebc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/outflow_Branch.ebc -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/outflow_Branch.nbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/outflow_Branch.nbc -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/the.connectivity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/the.connectivity -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/the.coordinates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/the.coordinates -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/the.supre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/the.supre -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/the.xadj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/the.xadj -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/wall.ebc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/wall.ebc -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/wall.nbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/wall.nbc -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/wall_Branch.ebc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/wall_Branch.ebc -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/Input/wall_Branch.nbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/Input/wall_Branch.nbc -------------------------------------------------------------------------------- /Presolver/Testing/Deformable/ReferenceOutput/restart.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Deformable/ReferenceOutput/restart.0.1 -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/all_exterior_faces.ebc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/all_exterior_faces.ebc -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/outflow_Branch.ebc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/outflow_Branch.ebc -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/outflow_Branch.nbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/outflow_Branch.nbc -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/the.connectivity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/the.connectivity -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/the.coordinates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/the.coordinates -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/the.supre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/the.supre -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/the.xadj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/the.xadj -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/wall.nbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/wall.nbc -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/wall_Branch.ebc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/wall_Branch.ebc -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/wall_Branch.nbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/wall_Branch.nbc -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/wall_Descending_Aorta.ebc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/wall_Descending_Aorta.ebc -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/Input/wall_Descending_Aorta.nbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/Input/wall_Descending_Aorta.nbc -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/ReferenceOutput/geombc.dat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/ReferenceOutput/geombc.dat.1 -------------------------------------------------------------------------------- /Presolver/Testing/Rigid/ReferenceOutput/restart.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/Rigid/ReferenceOutput/restart.0.1 -------------------------------------------------------------------------------- /Presolver/Testing/RunPresolverAndCompareOutput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/Testing/RunPresolverAndCompareOutput.cmake -------------------------------------------------------------------------------- /Presolver/cmd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/cmd.cxx -------------------------------------------------------------------------------- /Presolver/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/cmd.h -------------------------------------------------------------------------------- /Presolver/cvSolverIO.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/cvSolverIO.cxx -------------------------------------------------------------------------------- /Presolver/cvSolverIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/cvSolverIO.h -------------------------------------------------------------------------------- /Presolver/directsolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/directsolve.c -------------------------------------------------------------------------------- /Presolver/displacements.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/displacements.cxx -------------------------------------------------------------------------------- /Presolver/helpers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/helpers.cxx -------------------------------------------------------------------------------- /Presolver/supre-cmds.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/supre-cmds.cxx -------------------------------------------------------------------------------- /Presolver/supre.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/Presolver/supre.cxx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/README.md -------------------------------------------------------------------------------- /SuperBuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/SuperBuild.cmake -------------------------------------------------------------------------------- /attribution_CRIMSON_GUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/attribution_CRIMSON_GUI.html -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/contributing.md -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/contributors.txt -------------------------------------------------------------------------------- /matlab/CRIMSON_readVTKPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/matlab/CRIMSON_readVTKPath.m -------------------------------------------------------------------------------- /matlab/CRIMSON_writeVTKPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carthurs/CRIMSONGUI/HEAD/matlab/CRIMSON_writeVTKPath.m --------------------------------------------------------------------------------