├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CleanSolution.ps1 ├── Directory.Build.props ├── GraphShape.sln ├── GraphShape.sln.DotSettings ├── GraphShape.snk ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── SonarQube.Analysis.xml ├── appveyor.yml ├── common ├── Directory.Build.props └── GraphShape.Factory │ ├── GraphFactory.cs │ └── GraphShape.Factory.csproj ├── docs ├── .gitignore ├── api │ ├── .gitignore │ └── index.md ├── docfx.json ├── documentation │ ├── general-coding-guidelines.md │ ├── guidelines │ │ ├── csharp-best-practices.md │ │ ├── csharp-coding-guidelines.md │ │ └── toc.yml │ └── toc.yml ├── images │ ├── check.svg │ ├── cross.svg │ ├── graphshape.ico │ ├── graphshape_logo.png │ └── logo.svg ├── index.md ├── templates │ └── material │ │ ├── partials │ │ └── head.tmpl.partial │ │ └── styles │ │ └── main.css └── toc.yml ├── samples ├── Directory.Build.props ├── GraphShape.Optimization │ ├── Algorithms │ │ └── GeneticCompoundFDPOptimizer.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── GeneticAlgorithm │ │ ├── GeneticAlgorithmBase.cs │ │ └── GeneticAlgorithmParameters.cs │ ├── GraphShape.Optimization.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── GraphShape.Sample │ ├── App.xaml │ ├── App.xaml.cs │ ├── Controls │ │ ├── PocContextualGraphLayout.cs │ │ ├── PocGraphLayout.cs │ │ ├── SampleGraphLayout.cs │ │ └── ZoomControl │ │ │ ├── ContentSizeChangedHandler.cs │ │ │ ├── ZoomContentPresenter.cs │ │ │ ├── ZoomControl.Resources.xaml │ │ │ ├── ZoomControl.cs │ │ │ ├── ZoomControlModes.cs │ │ │ └── ZoomViewModifierMode.cs │ ├── Converters │ │ ├── BoolToVisibilityConverter.cs │ │ ├── DoubleToIntegerConverter.cs │ │ ├── DoubleToLog10Converter.cs │ │ ├── EqualityToBooleanConverter.cs │ │ └── PocVertexToLayoutModeConverter.cs │ ├── GraphShape.Sample.csproj │ ├── LayoutManager.cs │ ├── MVVM │ │ ├── CommandSink.cs │ │ ├── CommandSinkBinding.cs │ │ ├── CommandSinkDependencyObject.cs │ │ ├── Interfaces │ │ │ ├── ICommandRegister.cs │ │ │ └── ICommandSink.cs │ │ └── MapperCommandBinding.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── GraphicResources.xaml │ │ ├── LayoutParameterTemplates.xaml │ │ └── PocGraphDataTemplates.xaml │ ├── Structures │ │ ├── PocEdge.cs │ │ ├── PocGraph.cs │ │ └── PocVertex.cs │ ├── Themes │ │ ├── BubbleCreme.xaml │ │ ├── BureauBlack.xaml │ │ ├── BureauBlue.xaml │ │ ├── ExpressionDark.xaml │ │ ├── ExpressionLight.xaml │ │ ├── Generic.xaml │ │ ├── ShinyBlue.xaml │ │ ├── ShinyRed.xaml │ │ ├── System.Windows.Controls.Theming.BubbleCreme.dll │ │ ├── System.Windows.Controls.Theming.BureauBlack.dll │ │ ├── System.Windows.Controls.Theming.BureauBlue.dll │ │ ├── System.Windows.Controls.Theming.ExpressionDark.dll │ │ ├── System.Windows.Controls.Theming.ExpressionLight.dll │ │ ├── System.Windows.Controls.Theming.ShinyBlue.dll │ │ ├── System.Windows.Controls.Theming.ShinyRed.dll │ │ ├── System.Windows.Controls.Theming.TwilightBlue.dll │ │ ├── System.Windows.Controls.Theming.WhistlerBlue.dll │ │ ├── System.Windows.Controls.Theming.dll │ │ ├── TwilightBlue.xaml │ │ ├── WPFToolkit.dll │ │ └── WhistlerBlue.xaml │ ├── Utils │ │ └── PocSerializationHelpers.cs │ ├── ViewModels │ │ ├── GraphLayoutViewModel.cs │ │ ├── GraphViewModel.cs │ │ ├── LayoutAnalyzerViewModel.SampleGraphs.cs │ │ └── LayoutAnalyzerViewModel.cs │ ├── Views │ │ ├── TestCompoundLayoutWindow.xaml │ │ ├── TestCompoundLayoutWindow.xaml.cs │ │ ├── TestContextualLayoutWindow.xaml │ │ ├── TestContextualLayoutWindow.xaml.cs │ │ ├── TestGraphSampleWindow.xaml │ │ ├── TestGraphSampleWindow.xaml.cs │ │ ├── TestPlainCompoundLayoutWindow.xaml │ │ └── TestPlainCompoundLayoutWindow.xaml.cs │ ├── app.config │ └── icons │ │ ├── Add.xaml │ │ ├── Back.xaml │ │ ├── Block.xaml │ │ ├── Check.xaml │ │ ├── Configurator.xaml │ │ ├── Delete.xaml │ │ ├── Desktop.ini │ │ ├── Down.xaml │ │ ├── Down1.xaml │ │ ├── Edit.xaml │ │ ├── Error.xaml │ │ ├── Exit.xaml │ │ ├── File.xaml │ │ ├── Find.xaml │ │ ├── Find_Next.xaml │ │ ├── Forward.xaml │ │ ├── Help.xaml │ │ ├── Left.xaml │ │ ├── Left1.xaml │ │ ├── Lock.xaml │ │ ├── Open.xaml │ │ ├── Padlock.xaml │ │ ├── Printer.xaml │ │ ├── Redo.xaml │ │ ├── Refresh.xaml │ │ ├── Right.xaml │ │ ├── Right1.xaml │ │ ├── Save.xaml │ │ ├── Save_As.xaml │ │ ├── Search.xaml │ │ ├── Undo.xaml │ │ ├── Up.xaml │ │ ├── Up1.xaml │ │ ├── Warning.xaml │ │ ├── Zoom_in.xaml │ │ └── Zoom_out.xaml └── Libraries │ └── RibbonControlsLibrary.dll ├── src ├── Directory.Build.props ├── GraphShape.CommonInternals │ ├── Externs │ │ └── JetBrains.Annotations.cs │ ├── GraphShape.CommonInternals.projitems │ ├── GraphShape.CommonInternals.shproj │ └── Signing │ │ └── PublicKey.cs ├── GraphShape.Controls │ ├── Behaviors │ │ └── DragBehavior.cs │ ├── Controls │ │ ├── AlgorithmConstraints.cs │ │ ├── AnimationContext.cs │ │ ├── Animations │ │ │ └── SimpleMoveAnimation.cs │ │ ├── CompoundVertexControl.cs │ │ ├── ContextualGraphLayout.cs │ │ ├── EdgeControl.cs │ │ ├── GraphCanvas.cs │ │ ├── GraphElementBehavior.cs │ │ ├── GraphLayout │ │ │ ├── GraphLayout.DependencyProperties.cs │ │ │ ├── GraphLayout.GraphElements.cs │ │ │ ├── GraphLayout.HighlightController.cs │ │ │ └── GraphLayout.cs │ │ ├── HighlightInfoChangedEventArgs.cs │ │ ├── HighlightTriggeredEventArgs.cs │ │ ├── LayoutMode.cs │ │ ├── PositionChangedEventArgs.cs │ │ ├── Transitions │ │ │ ├── FadeInTransition.cs │ │ │ ├── FadeOutTransition.cs │ │ │ └── FadeTransition.cs │ │ └── VertexControl.cs │ ├── Converters │ │ └── EdgeRouteToPathConverter.cs │ ├── Extensions │ │ └── BasicStructuresExtensions.cs │ ├── GraphShape.Controls.csproj │ ├── Helpers │ │ ├── DisposableHelpers.cs │ │ └── ObjectPool.cs │ ├── Interfaces │ │ ├── IAnimation.cs │ │ ├── IAnimationContext.cs │ │ ├── ICompoundVertexControl.cs │ │ ├── IPoolObject.cs │ │ ├── ITransition.cs │ │ └── TransitionExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Themes │ │ └── Generic.xaml └── GraphShape │ ├── Algorithms │ ├── AlgorithmBase.cs │ ├── EdgeRouting │ │ ├── EdgeRoutingAlgorithmBase.cs │ │ ├── EdgeRoutingParameters.cs │ │ └── StandardEdgeRoutingAlgorithmFactory.cs │ ├── FactoryHelpers.cs │ ├── Highlight │ │ ├── HighlightAlgorithmBase.cs │ │ ├── HighlightContext.cs │ │ ├── HighlightParameters.cs │ │ ├── SimpleHighlightAlgorithm.cs │ │ └── StandardHighlightAlgorithmFactory.cs │ ├── LayeredTopologicalSortAlgorithm.cs │ ├── Layout │ │ ├── Compound │ │ │ ├── CompoundLayoutContext.cs │ │ │ ├── CompoundLayoutIterationEventArgs.cs │ │ │ ├── CompoundVertexInnerLayoutType.cs │ │ │ ├── FDP │ │ │ │ ├── CompoundFDPLayoutAlgorithm.Data.cs │ │ │ │ ├── CompoundFDPLayoutAlgorithm.Init.cs │ │ │ │ ├── CompoundFDPLayoutAlgorithm.cs │ │ │ │ └── CompoundFDPLayoutParameters.cs │ │ │ ├── ICompoundLayoutAlgorithm.cs │ │ │ ├── ICompoundLayoutContext.cs │ │ │ ├── ICompoundLayoutIterationEventArgs.cs │ │ │ ├── TestingCompoundLayoutIterationEventArgs.cs │ │ │ └── TestingCompoundVertexInfo.cs │ │ ├── Contextual │ │ │ ├── ContextualLayoutAlgorithmFactory.cs │ │ │ ├── ContextualLayoutContext.cs │ │ │ ├── DoubleTreeLayoutAlgorithm.cs │ │ │ ├── DoubleTreeLayoutParameters.cs │ │ │ ├── DoubleTreeSides.cs │ │ │ ├── DoubleTreeVertexType.cs │ │ │ └── IContextualLayoutAlgorithmFactory.cs │ │ ├── LayoutAlgorithmBase.cs │ │ ├── LayoutContext.cs │ │ ├── LayoutDirection.cs │ │ ├── LayoutIterationEventArgs.cs │ │ ├── LayoutMode.cs │ │ ├── LayoutParametersBase.cs │ │ ├── LayoutState.cs │ │ ├── LayoutUtils.cs │ │ ├── ParameterizedLayoutAlgorithmBase.cs │ │ ├── Simple │ │ │ ├── Circular │ │ │ │ ├── CircularLayoutAlgorithm.cs │ │ │ │ └── CircularLayoutParameters.cs │ │ │ ├── FDP │ │ │ │ ├── BoundedFRLayoutParameters.cs │ │ │ │ ├── FRCoolingFunction.cs │ │ │ │ ├── FRLayoutAlgorithm.cs │ │ │ │ ├── FRLayoutParametersBase.cs │ │ │ │ ├── FreeFRLayoutParameters.cs │ │ │ │ ├── ISOMLayoutAlgorithm.cs │ │ │ │ ├── ISOMLayoutParameters.cs │ │ │ │ ├── KKLayoutAlgorithm.cs │ │ │ │ ├── KKLayoutParameters.cs │ │ │ │ ├── LinLogLayoutAlgorithm.QuadTree.cs │ │ │ │ ├── LinLogLayoutAlgorithm.cs │ │ │ │ └── LinLogLayoutParameters.cs │ │ │ ├── Hierarchical │ │ │ │ ├── SugiyamaAlgorithm.BuildSparseNormalizedGraph.cs │ │ │ │ ├── SugiyamaAlgorithm.CrossingMinimizations.cs │ │ │ │ ├── SugiyamaAlgorithm.PrepareGraph.cs │ │ │ │ ├── SugiyamaEdgeRouting.cs │ │ │ │ ├── SugiyamaLayoutAlgorithm.AlternatingLayer.cs │ │ │ │ ├── SugiyamaLayoutAlgorithm.Data.cs │ │ │ │ ├── SugiyamaLayoutAlgorithm.SegmentContainer.cs │ │ │ │ ├── SugiyamaLayoutAlgorithm.SliceAssignments.cs │ │ │ │ ├── SugiyamaLayoutAlgorithm.cs │ │ │ │ └── SugiyamaLayoutParameters.cs │ │ │ ├── Random │ │ │ │ ├── RandomLayoutAlgorithm.cs │ │ │ │ ├── RandomLayoutParameters.cs │ │ │ │ └── RandomVertexType.cs │ │ │ └── Tree │ │ │ │ ├── BalloonTreeLayoutAlgorithm.cs │ │ │ │ ├── BalloonTreeLayoutParameters.cs │ │ │ │ ├── SimpleTreeLayoutAlgorithm.Data.cs │ │ │ │ ├── SimpleTreeLayoutAlgorithm.cs │ │ │ │ ├── SimpleTreeLayoutParameters.cs │ │ │ │ └── SpanningTreeGeneration.cs │ │ └── StandardLayoutAlgorithmFactory.cs │ └── OverlapRemoval │ │ ├── FSAAlgorithm.cs │ │ ├── OneWayFSAAlgorithm.cs │ │ ├── OneWayFSAParameters.cs │ │ ├── OneWayFSAWay.cs │ │ ├── OverlapRemovalAlgorithmBase.cs │ │ ├── OverlapRemovalContext.cs │ │ ├── OverlapRemovalHelpers.cs │ │ ├── OverlapRemovalParameters.cs │ │ ├── RectangleWrapper.cs │ │ └── StandardOverlapRemovalAlgorithmFactory.cs │ ├── Compatibility │ └── CallerMemberName.cs │ ├── Extensions │ └── CollectionExtensions.cs │ ├── GraphShape.csproj │ ├── Interfaces │ ├── Algorithms │ │ ├── EdgeRouting │ │ │ ├── IEdgeRoutingAlgorithm.cs │ │ │ ├── IEdgeRoutingAlgorithmFactory.cs │ │ │ └── IEdgeRoutingParameters.cs │ │ ├── Highlight │ │ │ ├── IHighlightAlgorithm.cs │ │ │ ├── IHighlightAlgorithmFactory.cs │ │ │ ├── IHighlightContext.cs │ │ │ ├── IHighlightController.cs │ │ │ └── IHighlightParameters.cs │ │ ├── IAlgorithm.cs │ │ ├── IAlgorithmParameters.cs │ │ ├── Layout │ │ │ ├── ILayoutAlgorithm.cs │ │ │ ├── ILayoutAlgorithmFactory.cs │ │ │ ├── ILayoutContext.cs │ │ │ ├── ILayoutInfoIterationEventArgs.cs │ │ │ ├── ILayoutIterationEventArgs.cs │ │ │ ├── ILayoutParameters.cs │ │ │ ├── IParameterizedLayoutAlgorithm.cs │ │ │ └── LayoutDelegates.cs │ │ └── OverlapRemoval │ │ │ ├── IOverlapRemovalAlgorithm.cs │ │ │ ├── IOverlapRemovalAlgorithmFactory.cs │ │ │ ├── IOverlapRemovalContext.cs │ │ │ └── IOverlapRemovalParameters.cs │ ├── Edges │ │ ├── EdgeTypes.cs │ │ └── ITypedEdge.cs │ └── Graphs │ │ ├── ICompoundGraph.cs │ │ ├── IHierarchicalBidirectionalGraph.cs │ │ ├── IMutableCompoundGraph.cs │ │ └── ISoftMutableGraph.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Structures │ ├── Bases │ │ ├── Point.cs │ │ ├── Rect.cs │ │ ├── Size.cs │ │ ├── Thickness.cs │ │ └── Vector.cs │ ├── Edges │ │ ├── TypedEdge.cs │ │ └── WeightedEdge.cs │ ├── Graphs │ │ ├── CompoundGraph.cs │ │ ├── GraphHideHelpers.cs │ │ ├── HierarchicalGraph.cs │ │ ├── SoftMutableBidirectionalGraph.cs │ │ └── SoftMutableHierarchicalGraph.cs │ └── Vertices │ │ └── WrappedVertex.cs │ └── Utils │ ├── GraphHelpers.cs │ ├── MathUtils.cs │ ├── NotifierObject.cs │ └── Pair.cs └── tests ├── Directory.Build.props ├── GraphShape.Controls.Tests ├── Converters │ └── EdgeRouteToPathConverterTests.cs ├── DisposableHelpersTests.cs ├── Extensions │ └── BasicStructuresExtensionsTests.cs ├── GraphShape.Controls.Tests.csproj └── ObjectPoolTests.cs ├── GraphShape.Tests ├── Algorithms │ ├── AlgorithmFeaturesTests.cs │ ├── AlgorithmTestHelpers.cs │ ├── EdgeRouting │ │ ├── EdgeRoutingAlgorithmTests.cs │ │ ├── EdgeRoutingParametersTests.cs │ │ └── StandardEdgeRoutingAlgorithmFactoryTests.cs │ ├── FactoryHelpersTests.cs │ ├── Highlight │ │ ├── HighlightAlgorithmTests.cs │ │ ├── HighlightContextTests.cs │ │ ├── HighlightParametersTests.cs │ │ ├── SimpleHighlightAlgorithmTests.cs │ │ └── StandardHighlightAlgorithmFactoryTests.cs │ ├── LayeredTopologicalSortAlgorithmTests.cs │ ├── Layout │ │ ├── Contextual │ │ │ ├── ContextualLayoutAlgorithmFactoryTests.cs │ │ │ ├── ContextualLayoutContextTests.cs │ │ │ └── DoubleTreeLayoutTests.cs │ │ ├── FDP │ │ │ ├── CompoundFDPLayoutTests.cs │ │ │ ├── FRLayoutTests.cs │ │ │ ├── ISOMLayoutTests.cs │ │ │ ├── KKLayoutTests.cs │ │ │ └── LinLogLayoutTests.cs │ │ ├── Hierarchical │ │ │ └── SugiyamaLayoutTests.cs │ │ ├── LayoutAlgorithmBaseTests.cs │ │ ├── LayoutAlgorithmTestBase.cs │ │ ├── LayoutContextTests.cs │ │ ├── LayoutIterationEventArgsTests.cs │ │ ├── LayoutStateTests.cs │ │ ├── LayoutUtilsTests.cs │ │ ├── Parameters │ │ │ ├── BalloonTreeLayoutParametersTests.cs │ │ │ ├── BoundedFRLayoutParametersTests.cs │ │ │ ├── CircularLayoutParametersTests.cs │ │ │ ├── CompoundFDPLayoutParametersTests.cs │ │ │ ├── DoubleTreeLayoutParametersTests.cs │ │ │ ├── FreeFRLayoutParametersTests.cs │ │ │ ├── ISOMLayoutParametersTests.cs │ │ │ ├── KKLayoutParametersTests.cs │ │ │ ├── LinLogLayoutParametersTests.cs │ │ │ ├── RandomParametersTests.cs │ │ │ ├── SimpleTreeLayoutParametersTests.cs │ │ │ └── SugiyamaLayoutParametersTests.cs │ │ ├── ParametrizedLayoutAlgorithmBaseTests.cs │ │ ├── Simple │ │ │ ├── BalloonTreeLayoutTests.cs │ │ │ ├── CircularLayoutTests.cs │ │ │ ├── RandomLayoutTests.cs │ │ │ └── TreeLayoutTests.cs │ │ └── StandardLayoutAlgorithmFactoryTests.cs │ └── OverlapRemoval │ │ ├── FSAAlgorithmTests.cs │ │ ├── FSAAlgorithmTestsBase.cs │ │ ├── OneWayFSAAlgorithmTests.cs │ │ ├── OverlapRemovalContextTests.cs │ │ ├── OverlapRemovalParametersTests.cs │ │ ├── RectangleWrapperTests.cs │ │ └── StandardOverlapRemovalAlgorithmFactoryTests.cs ├── GraphShape.Tests.csproj ├── Helpers │ ├── GraphTestHelpers.cs │ └── LayoutTestHelpers.cs ├── Metrics │ ├── EdgeCrossingCalculator.cs │ ├── IMetricCalculator.cs │ ├── LayoutAreaMetricCalculator.cs │ ├── MetricCalculatorBase.cs │ ├── OverlapMetricCalculator.cs │ └── PositionsMetricCalculator.cs ├── Structures │ ├── Bases │ │ ├── PointTests.cs │ │ ├── RectTests.cs │ │ ├── SizeTests.cs │ │ ├── ThicknessTests.cs │ │ └── VectorTests.cs │ ├── Edges │ │ ├── TypedEdgeTests.cs │ │ └── WeightedEdgeTests.cs │ ├── Graphs │ │ ├── CompoundGraphTests.cs │ │ ├── GraphHideHelpersTests.cs │ │ ├── HierarchicalGraphTests.cs │ │ ├── SoftMutableBidirectionalGraphTests.cs │ │ └── SoftMutableHierarchicalGraphTests.cs │ └── Vertices │ │ └── WrappedVertexTests.cs ├── TestVertex.cs └── Utils │ ├── GraphHelpersTests.cs │ └── PairTests.cs └── TestGraphs ├── Sugiyama ├── BigSugiyama.gml ├── BigSugiyama2.gml ├── SugiyamaTester1.gml ├── SugiyamaTester10.gml ├── SugiyamaTester11.gml ├── SugiyamaTester12.gml ├── SugiyamaTester12_dummy.gml ├── SugiyamaTester12_sparse.gml ├── SugiyamaTester13.gml ├── SugiyamaTester14.gml ├── SugiyamaTester15.gml ├── SugiyamaTester16.gml ├── SugiyamaTester2.gml ├── SugiyamaTester3.gml ├── SugiyamaTester4.gml ├── SugiyamaTester5.gml ├── SugiyamaTester6.gml ├── SugiyamaTester7.gml ├── SugiyamaTester8.gml └── SugiyamaTester9.gml ├── Symmetry.gml └── WidthAndHeightOpt ├── WHO1.gml └── WHO2.gml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [KeRNeLith] -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/.gitignore -------------------------------------------------------------------------------- /CleanSolution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/CleanSolution.ps1 -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /GraphShape.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/GraphShape.sln -------------------------------------------------------------------------------- /GraphShape.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/GraphShape.sln.DotSettings -------------------------------------------------------------------------------- /GraphShape.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/GraphShape.snk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /SonarQube.Analysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/SonarQube.Analysis.xml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/appveyor.yml -------------------------------------------------------------------------------- /common/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/common/Directory.Build.props -------------------------------------------------------------------------------- /common/GraphShape.Factory/GraphFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/common/GraphShape.Factory/GraphFactory.cs -------------------------------------------------------------------------------- /common/GraphShape.Factory/GraphShape.Factory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/common/GraphShape.Factory/GraphShape.Factory.csproj -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/api/.gitignore -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/documentation/general-coding-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/documentation/general-coding-guidelines.md -------------------------------------------------------------------------------- /docs/documentation/guidelines/csharp-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/documentation/guidelines/csharp-best-practices.md -------------------------------------------------------------------------------- /docs/documentation/guidelines/csharp-coding-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/documentation/guidelines/csharp-coding-guidelines.md -------------------------------------------------------------------------------- /docs/documentation/guidelines/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/documentation/guidelines/toc.yml -------------------------------------------------------------------------------- /docs/documentation/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/documentation/toc.yml -------------------------------------------------------------------------------- /docs/images/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/images/check.svg -------------------------------------------------------------------------------- /docs/images/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/images/cross.svg -------------------------------------------------------------------------------- /docs/images/graphshape.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/images/graphshape.ico -------------------------------------------------------------------------------- /docs/images/graphshape_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/images/graphshape_logo.png -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/templates/material/partials/head.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/templates/material/partials/head.tmpl.partial -------------------------------------------------------------------------------- /docs/templates/material/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/templates/material/styles/main.css -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/GraphShape.Optimization/Algorithms/GeneticCompoundFDPOptimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Optimization/Algorithms/GeneticCompoundFDPOptimizer.cs -------------------------------------------------------------------------------- /samples/GraphShape.Optimization/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Optimization/App.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Optimization/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Optimization/App.xaml.cs -------------------------------------------------------------------------------- /samples/GraphShape.Optimization/GeneticAlgorithm/GeneticAlgorithmBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Optimization/GeneticAlgorithm/GeneticAlgorithmBase.cs -------------------------------------------------------------------------------- /samples/GraphShape.Optimization/GeneticAlgorithm/GeneticAlgorithmParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Optimization/GeneticAlgorithm/GeneticAlgorithmParameters.cs -------------------------------------------------------------------------------- /samples/GraphShape.Optimization/GraphShape.Optimization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Optimization/GraphShape.Optimization.csproj -------------------------------------------------------------------------------- /samples/GraphShape.Optimization/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Optimization/MainWindow.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Optimization/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Optimization/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/GraphShape.Optimization/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Optimization/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/App.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/App.xaml.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Controls/PocContextualGraphLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Controls/PocContextualGraphLayout.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Controls/PocGraphLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Controls/PocGraphLayout.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Controls/SampleGraphLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Controls/SampleGraphLayout.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Controls/ZoomControl/ContentSizeChangedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Controls/ZoomControl/ContentSizeChangedHandler.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Controls/ZoomControl/ZoomContentPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Controls/ZoomControl/ZoomContentPresenter.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Controls/ZoomControl/ZoomControl.Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Controls/ZoomControl/ZoomControl.Resources.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Controls/ZoomControl/ZoomControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Controls/ZoomControl/ZoomControl.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Controls/ZoomControl/ZoomControlModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Controls/ZoomControl/ZoomControlModes.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Controls/ZoomControl/ZoomViewModifierMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Controls/ZoomControl/ZoomViewModifierMode.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Converters/DoubleToIntegerConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Converters/DoubleToIntegerConverter.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Converters/DoubleToLog10Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Converters/DoubleToLog10Converter.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Converters/EqualityToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Converters/EqualityToBooleanConverter.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Converters/PocVertexToLayoutModeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Converters/PocVertexToLayoutModeConverter.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/GraphShape.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/GraphShape.Sample.csproj -------------------------------------------------------------------------------- /samples/GraphShape.Sample/LayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/LayoutManager.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/MVVM/CommandSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/MVVM/CommandSink.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/MVVM/CommandSinkBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/MVVM/CommandSinkBinding.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/MVVM/CommandSinkDependencyObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/MVVM/CommandSinkDependencyObject.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/MVVM/Interfaces/ICommandRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/MVVM/Interfaces/ICommandRegister.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/MVVM/Interfaces/ICommandSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/MVVM/Interfaces/ICommandSink.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/MVVM/MapperCommandBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/MVVM/MapperCommandBinding.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/MainWindow.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Properties/Settings.settings -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Resources/GraphicResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Resources/GraphicResources.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Resources/LayoutParameterTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Resources/LayoutParameterTemplates.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Resources/PocGraphDataTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Resources/PocGraphDataTemplates.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Structures/PocEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Structures/PocEdge.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Structures/PocGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Structures/PocGraph.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Structures/PocVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Structures/PocVertex.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/BubbleCreme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/BubbleCreme.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/BureauBlack.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/BureauBlack.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/BureauBlue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/BureauBlue.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/ExpressionDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/ExpressionDark.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/ExpressionLight.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/ExpressionLight.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/Generic.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/ShinyBlue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/ShinyBlue.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/ShinyRed.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/ShinyRed.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.BubbleCreme.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.BubbleCreme.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.BureauBlack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.BureauBlack.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.BureauBlue.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.BureauBlue.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.ExpressionDark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.ExpressionDark.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.ExpressionLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.ExpressionLight.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.ShinyBlue.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.ShinyBlue.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.ShinyRed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.ShinyRed.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.TwilightBlue.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.TwilightBlue.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.WhistlerBlue.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.WhistlerBlue.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/System.Windows.Controls.Theming.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/TwilightBlue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/TwilightBlue.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/WPFToolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/WPFToolkit.dll -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Themes/WhistlerBlue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Themes/WhistlerBlue.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Utils/PocSerializationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Utils/PocSerializationHelpers.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/ViewModels/GraphLayoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/ViewModels/GraphLayoutViewModel.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/ViewModels/GraphViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/ViewModels/GraphViewModel.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/ViewModels/LayoutAnalyzerViewModel.SampleGraphs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/ViewModels/LayoutAnalyzerViewModel.SampleGraphs.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/ViewModels/LayoutAnalyzerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/ViewModels/LayoutAnalyzerViewModel.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Views/TestCompoundLayoutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Views/TestCompoundLayoutWindow.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Views/TestCompoundLayoutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Views/TestCompoundLayoutWindow.xaml.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Views/TestContextualLayoutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Views/TestContextualLayoutWindow.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Views/TestContextualLayoutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Views/TestContextualLayoutWindow.xaml.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Views/TestGraphSampleWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Views/TestGraphSampleWindow.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Views/TestGraphSampleWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Views/TestGraphSampleWindow.xaml.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Views/TestPlainCompoundLayoutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Views/TestPlainCompoundLayoutWindow.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/Views/TestPlainCompoundLayoutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/Views/TestPlainCompoundLayoutWindow.xaml.cs -------------------------------------------------------------------------------- /samples/GraphShape.Sample/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/app.config -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Add.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Add.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Back.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Back.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Block.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Block.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Check.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Check.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Configurator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Configurator.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Delete.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Delete.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Desktop.ini -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Down.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Down.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Down1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Down1.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Edit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Edit.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Error.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Error.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Exit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Exit.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/File.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/File.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Find.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Find.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Find_Next.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Find_Next.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Forward.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Forward.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Help.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Help.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Left.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Left.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Left1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Left1.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Lock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Lock.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Open.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Open.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Padlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Padlock.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Printer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Printer.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Redo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Redo.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Refresh.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Refresh.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Right.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Right.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Right1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Right1.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Save.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Save.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Save_As.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Save_As.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Search.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Search.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Undo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Undo.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Up.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Up.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Up1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Up1.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Warning.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Warning.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Zoom_in.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Zoom_in.xaml -------------------------------------------------------------------------------- /samples/GraphShape.Sample/icons/Zoom_out.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/GraphShape.Sample/icons/Zoom_out.xaml -------------------------------------------------------------------------------- /samples/Libraries/RibbonControlsLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/samples/Libraries/RibbonControlsLibrary.dll -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/GraphShape.CommonInternals/Externs/JetBrains.Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.CommonInternals/Externs/JetBrains.Annotations.cs -------------------------------------------------------------------------------- /src/GraphShape.CommonInternals/GraphShape.CommonInternals.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.CommonInternals/GraphShape.CommonInternals.projitems -------------------------------------------------------------------------------- /src/GraphShape.CommonInternals/GraphShape.CommonInternals.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.CommonInternals/GraphShape.CommonInternals.shproj -------------------------------------------------------------------------------- /src/GraphShape.CommonInternals/Signing/PublicKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.CommonInternals/Signing/PublicKey.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Behaviors/DragBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Behaviors/DragBehavior.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/AlgorithmConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/AlgorithmConstraints.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/AnimationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/AnimationContext.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/Animations/SimpleMoveAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/Animations/SimpleMoveAnimation.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/CompoundVertexControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/CompoundVertexControl.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/ContextualGraphLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/ContextualGraphLayout.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/EdgeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/EdgeControl.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/GraphCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/GraphCanvas.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/GraphElementBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/GraphElementBehavior.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/GraphLayout/GraphLayout.DependencyProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/GraphLayout/GraphLayout.DependencyProperties.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/GraphLayout/GraphLayout.GraphElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/GraphLayout/GraphLayout.GraphElements.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/GraphLayout/GraphLayout.HighlightController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/GraphLayout/GraphLayout.HighlightController.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/GraphLayout/GraphLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/GraphLayout/GraphLayout.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/HighlightInfoChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/HighlightInfoChangedEventArgs.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/HighlightTriggeredEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/HighlightTriggeredEventArgs.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/LayoutMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/LayoutMode.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/PositionChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/PositionChangedEventArgs.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/Transitions/FadeInTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/Transitions/FadeInTransition.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/Transitions/FadeOutTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/Transitions/FadeOutTransition.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/Transitions/FadeTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/Transitions/FadeTransition.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Controls/VertexControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Controls/VertexControl.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Converters/EdgeRouteToPathConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Converters/EdgeRouteToPathConverter.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Extensions/BasicStructuresExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Extensions/BasicStructuresExtensions.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/GraphShape.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/GraphShape.Controls.csproj -------------------------------------------------------------------------------- /src/GraphShape.Controls/Helpers/DisposableHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Helpers/DisposableHelpers.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Helpers/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Helpers/ObjectPool.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Interfaces/IAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Interfaces/IAnimation.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Interfaces/IAnimationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Interfaces/IAnimationContext.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Interfaces/ICompoundVertexControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Interfaces/ICompoundVertexControl.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Interfaces/IPoolObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Interfaces/IPoolObject.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Interfaces/ITransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Interfaces/ITransition.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Interfaces/TransitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Interfaces/TransitionExtensions.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GraphShape.Controls/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape.Controls/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/AlgorithmBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/AlgorithmBase.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/EdgeRouting/EdgeRoutingAlgorithmBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/EdgeRouting/EdgeRoutingAlgorithmBase.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/EdgeRouting/EdgeRoutingParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/EdgeRouting/EdgeRoutingParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/EdgeRouting/StandardEdgeRoutingAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/EdgeRouting/StandardEdgeRoutingAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/FactoryHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/FactoryHelpers.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Highlight/HighlightAlgorithmBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Highlight/HighlightAlgorithmBase.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Highlight/HighlightContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Highlight/HighlightContext.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Highlight/HighlightParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Highlight/HighlightParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Highlight/SimpleHighlightAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Highlight/SimpleHighlightAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Highlight/StandardHighlightAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Highlight/StandardHighlightAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/LayeredTopologicalSortAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/LayeredTopologicalSortAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/CompoundLayoutContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/CompoundLayoutContext.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/CompoundLayoutIterationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/CompoundLayoutIterationEventArgs.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/CompoundVertexInnerLayoutType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/CompoundVertexInnerLayoutType.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/FDP/CompoundFDPLayoutAlgorithm.Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/FDP/CompoundFDPLayoutAlgorithm.Data.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/FDP/CompoundFDPLayoutAlgorithm.Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/FDP/CompoundFDPLayoutAlgorithm.Init.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/FDP/CompoundFDPLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/FDP/CompoundFDPLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/FDP/CompoundFDPLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/FDP/CompoundFDPLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/ICompoundLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/ICompoundLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/ICompoundLayoutContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/ICompoundLayoutContext.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/ICompoundLayoutIterationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/ICompoundLayoutIterationEventArgs.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/TestingCompoundLayoutIterationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/TestingCompoundLayoutIterationEventArgs.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Compound/TestingCompoundVertexInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Compound/TestingCompoundVertexInfo.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Contextual/ContextualLayoutAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Contextual/ContextualLayoutAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Contextual/ContextualLayoutContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Contextual/ContextualLayoutContext.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Contextual/DoubleTreeLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Contextual/DoubleTreeLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Contextual/DoubleTreeLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Contextual/DoubleTreeLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Contextual/DoubleTreeSides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Contextual/DoubleTreeSides.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Contextual/DoubleTreeVertexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Contextual/DoubleTreeVertexType.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Contextual/IContextualLayoutAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Contextual/IContextualLayoutAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/LayoutAlgorithmBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/LayoutAlgorithmBase.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/LayoutContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/LayoutContext.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/LayoutDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/LayoutDirection.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/LayoutIterationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/LayoutIterationEventArgs.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/LayoutMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/LayoutMode.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/LayoutParametersBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/LayoutParametersBase.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/LayoutState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/LayoutState.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/LayoutUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/LayoutUtils.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/ParameterizedLayoutAlgorithmBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/ParameterizedLayoutAlgorithmBase.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Circular/CircularLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Circular/CircularLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Circular/CircularLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Circular/CircularLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/BoundedFRLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/BoundedFRLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/FRCoolingFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/FRCoolingFunction.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/FRLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/FRLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/FRLayoutParametersBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/FRLayoutParametersBase.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/FreeFRLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/FreeFRLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/ISOMLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/ISOMLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/ISOMLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/ISOMLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/KKLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/KKLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/KKLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/KKLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/LinLogLayoutAlgorithm.QuadTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/LinLogLayoutAlgorithm.QuadTree.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/LinLogLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/LinLogLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/FDP/LinLogLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/FDP/LinLogLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaAlgorithm.BuildSparseNormalizedGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaAlgorithm.BuildSparseNormalizedGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaAlgorithm.CrossingMinimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaAlgorithm.CrossingMinimizations.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaAlgorithm.PrepareGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaAlgorithm.PrepareGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaEdgeRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaEdgeRouting.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.AlternatingLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.AlternatingLayer.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.Data.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.SegmentContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.SegmentContainer.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.SliceAssignments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.SliceAssignments.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Hierarchical/SugiyamaLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Random/RandomLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Random/RandomLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Random/RandomLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Random/RandomLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Random/RandomVertexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Random/RandomVertexType.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Tree/BalloonTreeLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Tree/BalloonTreeLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Tree/BalloonTreeLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Tree/BalloonTreeLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Tree/SimpleTreeLayoutAlgorithm.Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Tree/SimpleTreeLayoutAlgorithm.Data.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Tree/SimpleTreeLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Tree/SimpleTreeLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Tree/SimpleTreeLayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Tree/SimpleTreeLayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/Simple/Tree/SpanningTreeGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/Simple/Tree/SpanningTreeGeneration.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/Layout/StandardLayoutAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/Layout/StandardLayoutAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/FSAAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/FSAAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/OneWayFSAAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/OneWayFSAAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/OneWayFSAParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/OneWayFSAParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/OneWayFSAWay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/OneWayFSAWay.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/OverlapRemovalAlgorithmBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/OverlapRemovalAlgorithmBase.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/OverlapRemovalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/OverlapRemovalContext.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/OverlapRemovalHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/OverlapRemovalHelpers.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/OverlapRemovalParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/OverlapRemovalParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/RectangleWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/RectangleWrapper.cs -------------------------------------------------------------------------------- /src/GraphShape/Algorithms/OverlapRemoval/StandardOverlapRemovalAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Algorithms/OverlapRemoval/StandardOverlapRemovalAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Compatibility/CallerMemberName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Compatibility/CallerMemberName.cs -------------------------------------------------------------------------------- /src/GraphShape/Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/GraphShape/GraphShape.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/GraphShape.csproj -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/EdgeRouting/IEdgeRoutingAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/EdgeRouting/IEdgeRoutingAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/EdgeRouting/IEdgeRoutingAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/EdgeRouting/IEdgeRoutingAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/EdgeRouting/IEdgeRoutingParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/EdgeRouting/IEdgeRoutingParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightContext.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightController.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Highlight/IHighlightParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/IAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/IAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/IAlgorithmParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/IAlgorithmParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Layout/ILayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Layout/ILayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Layout/ILayoutAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Layout/ILayoutAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Layout/ILayoutContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Layout/ILayoutContext.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Layout/ILayoutInfoIterationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Layout/ILayoutInfoIterationEventArgs.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Layout/ILayoutIterationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Layout/ILayoutIterationEventArgs.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Layout/ILayoutParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Layout/ILayoutParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Layout/IParameterizedLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Layout/IParameterizedLayoutAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/Layout/LayoutDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/Layout/LayoutDelegates.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/OverlapRemoval/IOverlapRemovalAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/OverlapRemoval/IOverlapRemovalAlgorithm.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/OverlapRemoval/IOverlapRemovalAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/OverlapRemoval/IOverlapRemovalAlgorithmFactory.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/OverlapRemoval/IOverlapRemovalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/OverlapRemoval/IOverlapRemovalContext.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Algorithms/OverlapRemoval/IOverlapRemovalParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Algorithms/OverlapRemoval/IOverlapRemovalParameters.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Edges/EdgeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Edges/EdgeTypes.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Edges/ITypedEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Edges/ITypedEdge.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Graphs/ICompoundGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Graphs/ICompoundGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Graphs/IHierarchicalBidirectionalGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Graphs/IHierarchicalBidirectionalGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Graphs/IMutableCompoundGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Graphs/IMutableCompoundGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Interfaces/Graphs/ISoftMutableGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Interfaces/Graphs/ISoftMutableGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Bases/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Bases/Point.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Bases/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Bases/Rect.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Bases/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Bases/Size.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Bases/Thickness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Bases/Thickness.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Bases/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Bases/Vector.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Edges/TypedEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Edges/TypedEdge.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Edges/WeightedEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Edges/WeightedEdge.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Graphs/CompoundGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Graphs/CompoundGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Graphs/GraphHideHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Graphs/GraphHideHelpers.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Graphs/HierarchicalGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Graphs/HierarchicalGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Graphs/SoftMutableBidirectionalGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Graphs/SoftMutableBidirectionalGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Graphs/SoftMutableHierarchicalGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Graphs/SoftMutableHierarchicalGraph.cs -------------------------------------------------------------------------------- /src/GraphShape/Structures/Vertices/WrappedVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Structures/Vertices/WrappedVertex.cs -------------------------------------------------------------------------------- /src/GraphShape/Utils/GraphHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Utils/GraphHelpers.cs -------------------------------------------------------------------------------- /src/GraphShape/Utils/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Utils/MathUtils.cs -------------------------------------------------------------------------------- /src/GraphShape/Utils/NotifierObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Utils/NotifierObject.cs -------------------------------------------------------------------------------- /src/GraphShape/Utils/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/src/GraphShape/Utils/Pair.cs -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/GraphShape.Controls.Tests/Converters/EdgeRouteToPathConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Controls.Tests/Converters/EdgeRouteToPathConverterTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Controls.Tests/DisposableHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Controls.Tests/DisposableHelpersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Controls.Tests/Extensions/BasicStructuresExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Controls.Tests/Extensions/BasicStructuresExtensionsTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Controls.Tests/GraphShape.Controls.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Controls.Tests/GraphShape.Controls.Tests.csproj -------------------------------------------------------------------------------- /tests/GraphShape.Controls.Tests/ObjectPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Controls.Tests/ObjectPoolTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/AlgorithmFeaturesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/AlgorithmFeaturesTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/AlgorithmTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/AlgorithmTestHelpers.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/EdgeRouting/EdgeRoutingAlgorithmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/EdgeRouting/EdgeRoutingAlgorithmTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/EdgeRouting/EdgeRoutingParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/EdgeRouting/EdgeRoutingParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/EdgeRouting/StandardEdgeRoutingAlgorithmFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/EdgeRouting/StandardEdgeRoutingAlgorithmFactoryTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/FactoryHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/FactoryHelpersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Highlight/HighlightAlgorithmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Highlight/HighlightAlgorithmTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Highlight/HighlightContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Highlight/HighlightContextTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Highlight/HighlightParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Highlight/HighlightParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Highlight/SimpleHighlightAlgorithmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Highlight/SimpleHighlightAlgorithmTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Highlight/StandardHighlightAlgorithmFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Highlight/StandardHighlightAlgorithmFactoryTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/LayeredTopologicalSortAlgorithmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/LayeredTopologicalSortAlgorithmTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Contextual/ContextualLayoutAlgorithmFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Contextual/ContextualLayoutAlgorithmFactoryTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Contextual/ContextualLayoutContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Contextual/ContextualLayoutContextTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Contextual/DoubleTreeLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Contextual/DoubleTreeLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/FDP/CompoundFDPLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/FDP/CompoundFDPLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/FDP/FRLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/FDP/FRLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/FDP/ISOMLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/FDP/ISOMLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/FDP/KKLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/FDP/KKLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/FDP/LinLogLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/FDP/LinLogLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Hierarchical/SugiyamaLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Hierarchical/SugiyamaLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/LayoutAlgorithmBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/LayoutAlgorithmBaseTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/LayoutAlgorithmTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/LayoutAlgorithmTestBase.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/LayoutContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/LayoutContextTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/LayoutIterationEventArgsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/LayoutIterationEventArgsTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/LayoutStateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/LayoutStateTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/LayoutUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/LayoutUtilsTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/BalloonTreeLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/BalloonTreeLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/BoundedFRLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/BoundedFRLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/CircularLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/CircularLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/CompoundFDPLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/CompoundFDPLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/DoubleTreeLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/DoubleTreeLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/FreeFRLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/FreeFRLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/ISOMLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/ISOMLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/KKLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/KKLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/LinLogLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/LinLogLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/RandomParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/RandomParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/SimpleTreeLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/SimpleTreeLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Parameters/SugiyamaLayoutParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Parameters/SugiyamaLayoutParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/ParametrizedLayoutAlgorithmBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/ParametrizedLayoutAlgorithmBaseTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Simple/BalloonTreeLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Simple/BalloonTreeLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Simple/CircularLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Simple/CircularLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Simple/RandomLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Simple/RandomLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/Simple/TreeLayoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/Simple/TreeLayoutTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/Layout/StandardLayoutAlgorithmFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/Layout/StandardLayoutAlgorithmFactoryTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/OverlapRemoval/FSAAlgorithmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/OverlapRemoval/FSAAlgorithmTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/OverlapRemoval/FSAAlgorithmTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/OverlapRemoval/FSAAlgorithmTestsBase.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/OverlapRemoval/OneWayFSAAlgorithmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/OverlapRemoval/OneWayFSAAlgorithmTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/OverlapRemoval/OverlapRemovalContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/OverlapRemoval/OverlapRemovalContextTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/OverlapRemoval/OverlapRemovalParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/OverlapRemoval/OverlapRemovalParametersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/OverlapRemoval/RectangleWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/OverlapRemoval/RectangleWrapperTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Algorithms/OverlapRemoval/StandardOverlapRemovalAlgorithmFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Algorithms/OverlapRemoval/StandardOverlapRemovalAlgorithmFactoryTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/GraphShape.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/GraphShape.Tests.csproj -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Helpers/GraphTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Helpers/GraphTestHelpers.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Helpers/LayoutTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Helpers/LayoutTestHelpers.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Metrics/EdgeCrossingCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Metrics/EdgeCrossingCalculator.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Metrics/IMetricCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Metrics/IMetricCalculator.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Metrics/LayoutAreaMetricCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Metrics/LayoutAreaMetricCalculator.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Metrics/MetricCalculatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Metrics/MetricCalculatorBase.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Metrics/OverlapMetricCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Metrics/OverlapMetricCalculator.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Metrics/PositionsMetricCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Metrics/PositionsMetricCalculator.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Bases/PointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Bases/PointTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Bases/RectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Bases/RectTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Bases/SizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Bases/SizeTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Bases/ThicknessTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Bases/ThicknessTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Bases/VectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Bases/VectorTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Edges/TypedEdgeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Edges/TypedEdgeTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Edges/WeightedEdgeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Edges/WeightedEdgeTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Graphs/CompoundGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Graphs/CompoundGraphTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Graphs/GraphHideHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Graphs/GraphHideHelpersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Graphs/HierarchicalGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Graphs/HierarchicalGraphTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Graphs/SoftMutableBidirectionalGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Graphs/SoftMutableBidirectionalGraphTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Graphs/SoftMutableHierarchicalGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Graphs/SoftMutableHierarchicalGraphTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Structures/Vertices/WrappedVertexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Structures/Vertices/WrappedVertexTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/TestVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/TestVertex.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Utils/GraphHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Utils/GraphHelpersTests.cs -------------------------------------------------------------------------------- /tests/GraphShape.Tests/Utils/PairTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/GraphShape.Tests/Utils/PairTests.cs -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/BigSugiyama.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/BigSugiyama.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/BigSugiyama2.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/BigSugiyama2.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester1.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester1.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester10.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester10.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester11.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester11.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester12.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester12.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester12_dummy.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester12_dummy.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester12_sparse.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester12_sparse.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester13.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester13.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester14.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester14.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester15.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester15.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester16.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester16.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester2.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester2.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester3.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester3.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester4.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester4.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester5.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester5.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester6.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester6.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester7.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester7.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester8.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester8.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Sugiyama/SugiyamaTester9.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Sugiyama/SugiyamaTester9.gml -------------------------------------------------------------------------------- /tests/TestGraphs/Symmetry.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/Symmetry.gml -------------------------------------------------------------------------------- /tests/TestGraphs/WidthAndHeightOpt/WHO1.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/WidthAndHeightOpt/WHO1.gml -------------------------------------------------------------------------------- /tests/TestGraphs/WidthAndHeightOpt/WHO2.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeRNeLith/GraphShape/HEAD/tests/TestGraphs/WidthAndHeightOpt/WHO2.gml --------------------------------------------------------------------------------