├── .gitattributes ├── .github └── workflows │ ├── Update-AssemblyInfo.ps1 │ ├── Update-EsapiHintPaths.ps1 │ ├── build webpage.yml │ ├── pipeline_15.6.yaml │ ├── pipeline_16.1.yaml │ ├── pipeline_17.0.yaml │ ├── pipeline_18.0.yaml │ ├── pipeline_generic.yaml │ └── static.yml ├── .gitignore ├── GridBlockJoiner ├── ContourTools.cs ├── GridBlockJoiner.cs ├── GridBlockJoiner.csproj ├── TargetSelector.xaml ├── TargetSelector.xaml.cs └── TargetSelectorVM.cs ├── GridTest ├── gridTest.sln └── gridTest │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── GridDialog.xaml.cs │ ├── GridDialogViewModel.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── gridTest.csproj ├── MAAS-SFRThelper.sln ├── MAAS-SFRThelper ├── App.config ├── Converters │ └── boolVisibilityConverter.cs ├── GridBlockCreator.cs ├── MAAS-SFRThelper.csproj ├── Models │ ├── BaseObject.cs │ ├── BeamSelectionItem.cs │ ├── Circle.cs │ ├── MetricData.cs │ ├── OARConstraint.cs │ ├── ObjectiveDefinition.cs │ ├── OptimizationTemplate.cs │ ├── Polygon.cs │ ├── Spacing.cs │ └── seedPointModel.cs ├── Properties │ ├── AssemblyExpirationDate.cs │ └── AssemblyInfo.cs ├── Resources │ └── qrcode.bmp ├── Services │ ├── AppConfigHelper.cs │ ├── EsapiWorker.cs │ ├── OptimizationObjectiveCreator.cs │ └── StructureExtension.cs ├── Utilities │ └── StructureMatchingHelper.cs ├── VarianLUSLA.pdf ├── ViewModels │ ├── CoordinateConverter.cs │ ├── EvaluationViewModel.cs │ ├── GridDialogViewModel.cs │ ├── MainViewModel.cs │ ├── OptimizationViewModel.cs │ ├── ScartViewModel.cs │ └── SphereDialogViewModel.cs ├── Views │ ├── Converters │ │ ├── BoolToBlueConverter.cs │ │ ├── BoolToStrikeConverter.cs │ │ └── RadiusToDiameterConverter.cs │ ├── EvaluationView.xaml │ ├── EvaluationView.xaml.cs │ ├── GridDialog.xaml │ ├── GridDialog.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── OptimizationView.xaml │ ├── OptimizationView.xaml.cs │ ├── ScartView.xaml │ ├── ScartView.xaml.cs │ ├── SettingsClass.cs │ ├── SphereDialog.xaml │ ├── SphereDialog.xaml.cs │ ├── TextBoxOutputter.cs │ └── config.json └── packages.config ├── README.md ├── Voronoi3d ├── CVT3D.cs ├── CVTSettings.cs ├── Geometry │ └── MeshHelper.cs ├── HashHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── RandomEngines │ ├── HaltonSequence3D.cs │ ├── HexGrid3D.cs │ ├── IRandom3D.cs │ ├── RandomEngine.cs │ └── RandomEngineFactory.cs ├── StoppingCriteria │ ├── CounterDecorator.cs │ ├── IStoppingCriterion.cs │ └── NoDiffAfterThreeIterationsStoppingCriterion.cs ├── Voronoi3d.csproj └── packages.config ├── docs └── index.md ├── lib └── EulaVerification.dll └── license.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/Update-AssemblyInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.github/workflows/Update-AssemblyInfo.ps1 -------------------------------------------------------------------------------- /.github/workflows/Update-EsapiHintPaths.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.github/workflows/Update-EsapiHintPaths.ps1 -------------------------------------------------------------------------------- /.github/workflows/build webpage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.github/workflows/build webpage.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline_15.6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.github/workflows/pipeline_15.6.yaml -------------------------------------------------------------------------------- /.github/workflows/pipeline_16.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.github/workflows/pipeline_16.1.yaml -------------------------------------------------------------------------------- /.github/workflows/pipeline_17.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.github/workflows/pipeline_17.0.yaml -------------------------------------------------------------------------------- /.github/workflows/pipeline_18.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.github/workflows/pipeline_18.0.yaml -------------------------------------------------------------------------------- /.github/workflows/pipeline_generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.github/workflows/pipeline_generic.yaml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/.gitignore -------------------------------------------------------------------------------- /GridBlockJoiner/ContourTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridBlockJoiner/ContourTools.cs -------------------------------------------------------------------------------- /GridBlockJoiner/GridBlockJoiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridBlockJoiner/GridBlockJoiner.cs -------------------------------------------------------------------------------- /GridBlockJoiner/GridBlockJoiner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridBlockJoiner/GridBlockJoiner.csproj -------------------------------------------------------------------------------- /GridBlockJoiner/TargetSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridBlockJoiner/TargetSelector.xaml -------------------------------------------------------------------------------- /GridBlockJoiner/TargetSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridBlockJoiner/TargetSelector.xaml.cs -------------------------------------------------------------------------------- /GridBlockJoiner/TargetSelectorVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridBlockJoiner/TargetSelectorVM.cs -------------------------------------------------------------------------------- /GridTest/gridTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest.sln -------------------------------------------------------------------------------- /GridTest/gridTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/App.config -------------------------------------------------------------------------------- /GridTest/gridTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/App.xaml -------------------------------------------------------------------------------- /GridTest/gridTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/App.xaml.cs -------------------------------------------------------------------------------- /GridTest/gridTest/GridDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/GridDialog.xaml.cs -------------------------------------------------------------------------------- /GridTest/gridTest/GridDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/GridDialogViewModel.cs -------------------------------------------------------------------------------- /GridTest/gridTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/MainWindow.xaml -------------------------------------------------------------------------------- /GridTest/gridTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /GridTest/gridTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GridTest/gridTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /GridTest/gridTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/Properties/Resources.resx -------------------------------------------------------------------------------- /GridTest/gridTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /GridTest/gridTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/Properties/Settings.settings -------------------------------------------------------------------------------- /GridTest/gridTest/gridTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/GridTest/gridTest/gridTest.csproj -------------------------------------------------------------------------------- /MAAS-SFRThelper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper.sln -------------------------------------------------------------------------------- /MAAS-SFRThelper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/App.config -------------------------------------------------------------------------------- /MAAS-SFRThelper/Converters/boolVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Converters/boolVisibilityConverter.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/GridBlockCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/GridBlockCreator.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/MAAS-SFRThelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/MAAS-SFRThelper.csproj -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/BaseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/BaseObject.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/BeamSelectionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/BeamSelectionItem.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/Circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/Circle.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/MetricData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/MetricData.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/OARConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/OARConstraint.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/ObjectiveDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/ObjectiveDefinition.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/OptimizationTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/OptimizationTemplate.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/Polygon.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/Spacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/Spacing.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Models/seedPointModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Models/seedPointModel.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Properties/AssemblyExpirationDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Properties/AssemblyExpirationDate.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Resources/qrcode.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Resources/qrcode.bmp -------------------------------------------------------------------------------- /MAAS-SFRThelper/Services/AppConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Services/AppConfigHelper.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Services/EsapiWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Services/EsapiWorker.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Services/OptimizationObjectiveCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Services/OptimizationObjectiveCreator.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Services/StructureExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Services/StructureExtension.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Utilities/StructureMatchingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Utilities/StructureMatchingHelper.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/VarianLUSLA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/VarianLUSLA.pdf -------------------------------------------------------------------------------- /MAAS-SFRThelper/ViewModels/CoordinateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/ViewModels/CoordinateConverter.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/ViewModels/EvaluationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/ViewModels/EvaluationViewModel.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/ViewModels/GridDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/ViewModels/GridDialogViewModel.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/ViewModels/OptimizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/ViewModels/OptimizationViewModel.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/ViewModels/ScartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/ViewModels/ScartViewModel.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/ViewModels/SphereDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/ViewModels/SphereDialogViewModel.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/Converters/BoolToBlueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/Converters/BoolToBlueConverter.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/Converters/BoolToStrikeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/Converters/BoolToStrikeConverter.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/Converters/RadiusToDiameterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/Converters/RadiusToDiameterConverter.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/EvaluationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/EvaluationView.xaml -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/EvaluationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/EvaluationView.xaml.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/GridDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/GridDialog.xaml -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/GridDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/GridDialog.xaml.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/MainWindow.xaml -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/OptimizationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/OptimizationView.xaml -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/OptimizationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/OptimizationView.xaml.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/ScartView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/ScartView.xaml -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/ScartView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/ScartView.xaml.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/SettingsClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/SettingsClass.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/SphereDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/SphereDialog.xaml -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/SphereDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/SphereDialog.xaml.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/TextBoxOutputter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/TextBoxOutputter.cs -------------------------------------------------------------------------------- /MAAS-SFRThelper/Views/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/Views/config.json -------------------------------------------------------------------------------- /MAAS-SFRThelper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/MAAS-SFRThelper/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/README.md -------------------------------------------------------------------------------- /Voronoi3d/CVT3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/CVT3D.cs -------------------------------------------------------------------------------- /Voronoi3d/CVTSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/CVTSettings.cs -------------------------------------------------------------------------------- /Voronoi3d/Geometry/MeshHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/Geometry/MeshHelper.cs -------------------------------------------------------------------------------- /Voronoi3d/HashHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/HashHelper.cs -------------------------------------------------------------------------------- /Voronoi3d/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Voronoi3d/RandomEngines/HaltonSequence3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/RandomEngines/HaltonSequence3D.cs -------------------------------------------------------------------------------- /Voronoi3d/RandomEngines/HexGrid3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/RandomEngines/HexGrid3D.cs -------------------------------------------------------------------------------- /Voronoi3d/RandomEngines/IRandom3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/RandomEngines/IRandom3D.cs -------------------------------------------------------------------------------- /Voronoi3d/RandomEngines/RandomEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/RandomEngines/RandomEngine.cs -------------------------------------------------------------------------------- /Voronoi3d/RandomEngines/RandomEngineFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/RandomEngines/RandomEngineFactory.cs -------------------------------------------------------------------------------- /Voronoi3d/StoppingCriteria/CounterDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/StoppingCriteria/CounterDecorator.cs -------------------------------------------------------------------------------- /Voronoi3d/StoppingCriteria/IStoppingCriterion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/StoppingCriteria/IStoppingCriterion.cs -------------------------------------------------------------------------------- /Voronoi3d/StoppingCriteria/NoDiffAfterThreeIterationsStoppingCriterion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/StoppingCriteria/NoDiffAfterThreeIterationsStoppingCriterion.cs -------------------------------------------------------------------------------- /Voronoi3d/Voronoi3d.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/Voronoi3d.csproj -------------------------------------------------------------------------------- /Voronoi3d/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/Voronoi3d/packages.config -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/docs/index.md -------------------------------------------------------------------------------- /lib/EulaVerification.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/lib/EulaVerification.dll -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varian-MedicalAffairsAppliedSolutions/MAAS-SFRThelper/HEAD/license.txt --------------------------------------------------------------------------------