├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── codeql-analysis.yml │ └── test.yml ├── .gitignore ├── .nojekyll ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── images │ ├── awilliams_blackbg.svg │ ├── awilliams_whitebg.svg │ ├── mdsShowAPI.svg │ ├── mdsShowAPI_dark.svg │ ├── showAPI.svg │ └── showAPI_dark.svg ├── layoutedit.mp4 └── video.png ├── esbuild.js ├── examples ├── graph-style │ ├── build.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── default-style.ts │ │ └── editor.ts │ └── tsconfig.json ├── mds │ └── index.html ├── minimal_svg_renderer │ ├── package.json │ ├── src │ │ ├── index.html │ │ └── main.ts │ ├── tsconfig.json │ └── yarn.lock ├── minimal_webgl_renderer │ ├── package.json │ ├── src │ │ ├── index.html │ │ └── main.ts │ ├── tsconfig.json │ └── yarn.lock ├── script │ └── index.html ├── svg-renderer-no-parser │ ├── index.html │ ├── package.json │ ├── src │ │ ├── app.ts │ │ └── settings.ts │ └── tsconfig.json ├── svg-renderer │ ├── index.html │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── drag-n-drop.ts │ │ └── settings.ts │ └── tsconfig.json └── webgl-renderer │ ├── index.html │ ├── package.json │ ├── spinner.gif │ ├── src │ ├── app.ts │ ├── drag-n-drop.ts │ ├── settings.ts │ └── worker.ts │ └── tsconfig.json ├── jest.config.js ├── lerna.json ├── modules ├── core │ ├── bundle.ts │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── layout │ │ │ ├── commonLayoutSettings.ts │ │ │ ├── core │ │ │ │ ├── RRect.ts │ │ │ │ ├── arrowhead.ts │ │ │ │ ├── curvePort.ts │ │ │ │ ├── floatingPort.ts │ │ │ │ ├── geomCluster.ts │ │ │ │ ├── geomEdge.ts │ │ │ │ ├── geomGraph.ts │ │ │ │ ├── geomLabel.ts │ │ │ │ ├── geomNode.ts │ │ │ │ ├── geomObject.ts │ │ │ │ ├── hookUpAnywhereFromInsidePort.ts │ │ │ │ ├── index.ts │ │ │ │ ├── port.ts │ │ │ │ ├── relativeFloatingPort.ts │ │ │ │ ├── tile.ts │ │ │ │ └── tileMap.ts │ │ │ ├── driver.ts │ │ │ ├── edgeLabelPlacement.ts │ │ │ ├── gTreeOverlapRemoval │ │ │ │ ├── MstLineSweeper.ts │ │ │ │ ├── MstOnDelaunayTriangulation.ts │ │ │ │ ├── OverlapRemovalSettings.ts │ │ │ │ └── gTreeOverlapRemoval.ts │ │ │ ├── iLayoutSettings.ts │ │ │ ├── incremental │ │ │ │ ├── fiEdge.ts │ │ │ │ ├── fiNode.ts │ │ │ │ ├── iPsepCola.ts │ │ │ │ ├── iPsepColaSettings.ts │ │ │ │ └── multipole │ │ │ │ │ ├── disc.ts │ │ │ │ │ ├── kdTree.ts │ │ │ │ │ ├── minimumEnclosingDisc.ts │ │ │ │ │ └── multipoleCoefficients.ts │ │ │ ├── initialLayout │ │ │ │ ├── geomConnectedComponent.ts │ │ │ │ ├── iGeomGraph.ts │ │ │ │ ├── initialLayout.ts │ │ │ │ └── layoutAlgorithmHelpers.ts │ │ │ ├── layered │ │ │ │ ├── Balancing.ts │ │ │ │ ├── CycleRemoval.ts │ │ │ │ ├── Database.ts │ │ │ │ ├── EdgePathsInserter.ts │ │ │ │ ├── HierarchyCalculator.ts │ │ │ │ ├── HorizontalConstraintsForSugiyama.ts │ │ │ │ ├── LayerArrays.ts │ │ │ │ ├── LayerInserter.ts │ │ │ │ ├── NodeKind.ts │ │ │ │ ├── ProperLayeredGraph.ts │ │ │ │ ├── RefinerBetweenTwoLayers.ts │ │ │ │ ├── anchor.ts │ │ │ │ ├── iIntEdge.ts │ │ │ │ ├── layerDirectionEnum.ts │ │ │ │ ├── layerEdge.ts │ │ │ │ ├── layeredLayout.ts │ │ │ │ ├── layering │ │ │ │ │ ├── NetworkSimplex.ts │ │ │ │ │ ├── NetworkSimplexForGeneralGraph.ts │ │ │ │ │ ├── layerCalculator.ts │ │ │ │ │ ├── longestPathLayering.ts │ │ │ │ │ └── networkEdge.ts │ │ │ │ ├── ordering │ │ │ │ │ ├── adjacentSwapsWithConstraints.ts │ │ │ │ │ ├── constrainedOrdering.ts │ │ │ │ │ ├── edgeComparerBySource.ts │ │ │ │ │ ├── edgeComparerByTarget.ts │ │ │ │ │ ├── layerInfo.ts │ │ │ │ │ ├── metroMapOrdering.ts │ │ │ │ │ ├── ordering.ts │ │ │ │ │ └── orderingMeasure.ts │ │ │ │ ├── polyIntEdge.ts │ │ │ │ ├── routing.ts │ │ │ │ ├── smoothedPolylineCalculator.ts │ │ │ │ ├── sugiyamaLayoutSettings.ts │ │ │ │ ├── verticalConstraintsForSugiyama.ts │ │ │ │ ├── xCoordsWithAlignment.ts │ │ │ │ └── xLayoutGraph.ts │ │ │ └── mds │ │ │ │ ├── AllPairsDistances.ts │ │ │ │ ├── SingleSourceDistances.ts │ │ │ │ ├── Transform.ts │ │ │ │ ├── mDSGraphLayout.ts │ │ │ │ ├── mDSLayoutSettings.ts │ │ │ │ ├── multiDimensionalScaling.ts │ │ │ │ ├── pivotDistances.ts │ │ │ │ └── pivotMDS.ts │ │ ├── math │ │ │ ├── RBTree │ │ │ │ ├── rbColor.ts │ │ │ │ ├── rbNode.ts │ │ │ │ └── rbTree.ts │ │ │ ├── geometry │ │ │ │ ├── IRectangle.ts │ │ │ │ ├── Interval.ts │ │ │ │ ├── RTree │ │ │ │ │ ├── hitTestBehavior.ts │ │ │ │ │ ├── rTree.ts │ │ │ │ │ ├── rectangleNode.ts │ │ │ │ │ └── rectangleNodeUtils.ts │ │ │ │ ├── bezierSeg.ts │ │ │ │ ├── closestPointOnCurve.ts │ │ │ │ ├── compassVector.ts │ │ │ │ ├── convexHull.ts │ │ │ │ ├── cornerSite.ts │ │ │ │ ├── curve.ts │ │ │ │ ├── curveFactory.ts │ │ │ │ ├── debugCurve.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── ellipse.ts │ │ │ │ ├── geomConstants.ts │ │ │ │ ├── icurve.ts │ │ │ │ ├── index.ts │ │ │ │ ├── intersectionInfo.ts │ │ │ │ ├── lineSegment.ts │ │ │ │ ├── linearSystem.ts │ │ │ │ ├── minDistCurveCurve.ts │ │ │ │ ├── overlapRemoval │ │ │ │ │ └── overlapRemovalParameters.ts │ │ │ │ ├── parallelogram.ts │ │ │ │ ├── parallelogramNode.ts │ │ │ │ ├── planeTransformation.ts │ │ │ │ ├── point.ts │ │ │ │ ├── pointPair.ts │ │ │ │ ├── polyline.ts │ │ │ │ ├── polylinePoint.ts │ │ │ │ ├── rectangle.ts │ │ │ │ ├── rectanglePacking │ │ │ │ │ ├── ColumnPacking.ts │ │ │ │ │ ├── OptimalColumnPacking.ts │ │ │ │ │ ├── OptimalPacking.ts │ │ │ │ │ ├── OptimalRectanglePacking.ts │ │ │ │ │ ├── Packing.ts │ │ │ │ │ ├── PackingConstants.ts │ │ │ │ │ └── RectanglePacking.ts │ │ │ │ └── smoothedPolyline.ts │ │ │ ├── graphAlgorithms │ │ │ │ ├── ConnectedComponentCalculator.ts │ │ │ │ ├── MinimumSpanningTreeByPrim.ts │ │ │ │ └── topologicalSort.ts │ │ │ └── projectionSolver │ │ │ │ ├── Block.ts │ │ │ │ ├── BlockVector.ts │ │ │ │ ├── Constraint.ts │ │ │ │ ├── ConstraintVector.ts │ │ │ │ ├── DfDvNode.ts │ │ │ │ ├── Parameters.ts │ │ │ │ ├── QPSC.ts │ │ │ │ ├── Solution.ts │ │ │ │ ├── Solver.ts │ │ │ │ ├── SolverAlgorithm.ts │ │ │ │ ├── SolverShell.ts │ │ │ │ ├── UniformOneDimensionalSolver.ts │ │ │ │ ├── UniformSolverVar.ts │ │ │ │ ├── Variable.ts │ │ │ │ └── ViolationCache.ts │ │ ├── routing │ │ │ ├── BundlingSettings.ts │ │ │ ├── ClusterBoundaryPort.ts │ │ │ ├── ConstrainedDelaunayTriangulation │ │ │ │ ├── Cdt.ts │ │ │ │ ├── CdtEdge.ts │ │ │ │ ├── CdtFront.ts │ │ │ │ ├── CdtFrontElement.ts │ │ │ │ ├── CdtSite.ts │ │ │ │ ├── CdtSweeper.ts │ │ │ │ ├── CdtTriangle.ts │ │ │ │ ├── PerimeterEdge.ts │ │ │ │ └── ThreeArray.ts │ │ │ ├── Corner.ts │ │ │ ├── EdgeRoutingMode.ts │ │ │ ├── EdgeRoutingSettings.ts │ │ │ ├── MultiEdgeRouter.ts │ │ │ ├── MultipleSourceMultipleTargetsShortestPathOnVisibilityGraph.ts │ │ │ ├── PreGraph.ts │ │ │ ├── RelativeShape.ts │ │ │ ├── ShapeCreator.ts │ │ │ ├── ShapeCreatorForRoutingToParents.ts │ │ │ ├── ShapeObstacleCalculator.ts │ │ │ ├── SingleSourceMultipleTargetsShortestPathOnVisibilityGraph.ts │ │ │ ├── SingleSourceSingleTargetShortestPathOnVisibilityGraph.ts │ │ │ ├── StraightLineEdges.ts │ │ │ ├── TightLooseCouple.ts │ │ │ ├── interactiveEdgeRouter.ts │ │ │ ├── interactiveObstacleCalculator.ts │ │ │ ├── rectilinear │ │ │ │ ├── AxisCoordinateEvent.ts │ │ │ │ ├── BasicObstacleSide.ts │ │ │ │ ├── BasicVertexEvent.ts │ │ │ │ ├── EventQueue.ts │ │ │ │ ├── FreePoint.ts │ │ │ │ ├── GroupBoundaryCrossing.ts │ │ │ │ ├── GroupBoundaryCrossingMap.ts │ │ │ │ ├── HighReflectionEvent.ts │ │ │ │ ├── LookaheadScan.ts │ │ │ │ ├── LowReflectionEvent.ts │ │ │ │ ├── MiscVertexEvents.ts │ │ │ │ ├── MsmtRectilinearPath.ts │ │ │ │ ├── NeighborSides.ts │ │ │ │ ├── ObstaclePort.ts │ │ │ │ ├── ObstaclePortEntrance.ts │ │ │ │ ├── ObstacleTree.ts │ │ │ │ ├── OpenVertexEvent.ts │ │ │ │ ├── OverlapConvexHull.ts │ │ │ │ ├── PointAndCrossings.ts │ │ │ │ ├── PointAndCrossingsList.ts │ │ │ │ ├── PointComparer.ts │ │ │ │ ├── PortManager.ts │ │ │ │ ├── RectilinearEdgeRouter.ts │ │ │ │ ├── RectilinearInteractiveEditor.ts │ │ │ │ ├── RectilinearScanLine.ts │ │ │ │ ├── ScanDirection.ts │ │ │ │ ├── ScanSegment.ts │ │ │ │ ├── ScanSegmentTree.ts │ │ │ │ ├── ScanSegmentVector.ts │ │ │ │ ├── ScanSegmentVectorItem.ts │ │ │ │ ├── SegmentIntersector.ts │ │ │ │ ├── SparseVisibiltyGraphGenerator.ts │ │ │ │ ├── SpliceUtility.ts │ │ │ │ ├── SsstRectilinearPath.ts │ │ │ │ ├── StaticGraphUtility.ts │ │ │ │ ├── TransientGraphUtility.ts │ │ │ │ ├── VertexEntry.ts │ │ │ │ ├── VisibilityGraphGenerator.ts │ │ │ │ ├── VisibilityVertexRectiline.ts │ │ │ │ ├── basicReflectionEvent.ts │ │ │ │ ├── nudging │ │ │ │ │ ├── AxisEdge.ts │ │ │ │ │ ├── AxisEdgeHighPointEvent.ts │ │ │ │ │ ├── AxisEdgeLowPointEvent.ts │ │ │ │ │ ├── AxisEdgesContainer.ts │ │ │ │ │ ├── CombinatorialNudger.ts │ │ │ │ │ ├── FreeSpaceFinder.ts │ │ │ │ │ ├── LinkedPoint.ts │ │ │ │ │ ├── LinkedPointSplitter.ts │ │ │ │ │ ├── LongestNudgedSegment.ts │ │ │ │ │ ├── Nudger.ts │ │ │ │ │ ├── Path.ts │ │ │ │ │ ├── PathEdge.ts │ │ │ │ │ ├── PathMerger.ts │ │ │ │ │ ├── PathRefiner.ts │ │ │ │ │ ├── SegWithIndex.ts │ │ │ │ │ └── StaircaseRemover.ts │ │ │ │ └── obstacle.ts │ │ │ ├── shape.ts │ │ │ ├── spline │ │ │ │ ├── bundling │ │ │ │ │ ├── BundleBase.ts │ │ │ │ │ ├── BundleBasesCalculator.ts │ │ │ │ │ ├── BundleInfo.ts │ │ │ │ │ ├── BundleRouter.ts │ │ │ │ │ ├── BundlingStatus.ts │ │ │ │ │ ├── CdtIntersections.ts │ │ │ │ │ ├── CdtThreader.ts │ │ │ │ │ ├── ChannelFlag.ts │ │ │ │ │ ├── CostCalculator.ts │ │ │ │ │ ├── EdgeNudger.ts │ │ │ │ │ ├── FlipCollapser.ts │ │ │ │ │ ├── FlipSwitcher.ts │ │ │ │ │ ├── GeneralMetroMapOrdering.ts │ │ │ │ │ ├── HubDebugger.ts │ │ │ │ │ ├── HubRadiiCalculator.ts │ │ │ │ │ ├── IntersectionCache.ts │ │ │ │ │ ├── Intersections.ts │ │ │ │ │ ├── LinearMetroMapOrdering.ts │ │ │ │ │ ├── MetroGraphData.ts │ │ │ │ │ ├── MetroLine.ts │ │ │ │ │ ├── MetroNodeInfo.ts │ │ │ │ │ ├── OrientedHubSegment.ts │ │ │ │ │ ├── PathFixer.ts │ │ │ │ │ ├── PointPairOrder.ts │ │ │ │ │ ├── SdBoneEdge.ts │ │ │ │ │ ├── SdShortestPath.ts │ │ │ │ │ ├── SdVertex.ts │ │ │ │ │ ├── SimulatedAnnealing.ts │ │ │ │ │ ├── Station.ts │ │ │ │ │ ├── StationEdgeInfo.ts │ │ │ │ │ ├── StationPositionsAdjuster.ts │ │ │ │ │ ├── TimeMeasurer.ts │ │ │ │ │ └── tupleMap.ts │ │ │ │ ├── coneSpanner │ │ │ │ │ ├── BrokenConeSide.ts │ │ │ │ │ ├── Cone.ts │ │ │ │ │ ├── ConeClosureEvent.ts │ │ │ │ │ ├── ConeLeftSide.ts │ │ │ │ │ ├── ConeRightSide.ts │ │ │ │ │ ├── ConeSide.ts │ │ │ │ │ ├── ConeSideComparer.ts │ │ │ │ │ ├── ConeSpanner.ts │ │ │ │ │ ├── ConeSpannerForPortLocations.ts │ │ │ │ │ ├── IConeSweeper.ts │ │ │ │ │ ├── LeftIntersectionEvent.ts │ │ │ │ │ ├── LeftObstacleSide.ts │ │ │ │ │ ├── LeftVertexEvent.ts │ │ │ │ │ ├── LineSweeper.ts │ │ │ │ │ ├── LineSweeperForPortLocations.ts │ │ │ │ │ ├── LowestVertexEvent.ts │ │ │ │ │ ├── ObstacleSide.ts │ │ │ │ │ ├── PortLocationEvent.ts │ │ │ │ │ ├── RightIntersectionEvent.ts │ │ │ │ │ ├── RightObstacleSide.ts │ │ │ │ │ ├── RightVertexEvent.ts │ │ │ │ │ ├── SweepEvent.ts │ │ │ │ │ └── VertexEvent.ts │ │ │ │ └── pathOptimizer.ts │ │ │ ├── splineRouter.ts │ │ │ └── visibility │ │ │ │ ├── ActiveDiagonalComparerWithRay.ts │ │ │ │ ├── ActiveEdgeComparerWithRay.ts │ │ │ │ ├── BimodalSequence.ts │ │ │ │ ├── Diagonal.ts │ │ │ │ ├── Drawings.png │ │ │ │ ├── InteractiveTangentVisibilityGraphCalculator.ts │ │ │ │ ├── LineSweeperBase.ts │ │ │ │ ├── ObstacleSideComparer.ts │ │ │ │ ├── PointVisibilityCalculator.ts │ │ │ │ ├── Polygon.ts │ │ │ │ ├── PortObstacleEvent.ts │ │ │ │ ├── SegmentBase.ts │ │ │ │ ├── Spanner visibility graph.docx │ │ │ │ ├── Stem.ts │ │ │ │ ├── StemStartPointComparer.ts │ │ │ │ ├── Tangent.ts │ │ │ │ ├── TangentPair.ts │ │ │ │ ├── TangentVisibilityGraphCalculator.ts │ │ │ │ ├── TollFreeVisibilityEdge.ts │ │ │ │ ├── UnimodalSequence.ts │ │ │ │ ├── VisibilityEdge.ts │ │ │ │ ├── VisibilityGraph.ts │ │ │ │ ├── VisibilityKind.ts │ │ │ │ └── VisibilityVertex.ts │ │ ├── structs │ │ │ ├── BasicGraph.ts │ │ │ ├── BinaryHeapPriorityQueue.ts │ │ │ ├── BinaryHeapWithComparer.ts │ │ │ ├── algorithmData.ts │ │ │ ├── attribute.ts │ │ │ ├── attributeRegistry.ts │ │ │ ├── basicGraphOnEdges.ts │ │ │ ├── edge.ts │ │ │ ├── entity.ts │ │ │ ├── genericBinaryHeapPriorityQueue.ts │ │ │ ├── genericHeapElement.ts │ │ │ ├── graph.ts │ │ │ ├── iedge.ts │ │ │ ├── label.ts │ │ │ ├── node.ts │ │ │ └── nodeCollection.ts │ │ └── utils │ │ │ ├── CoupleSet.ts │ │ │ ├── IntPair.ts │ │ │ ├── IntPairMap.ts │ │ │ ├── IntPairSet.ts │ │ │ ├── PointMap.ts │ │ │ ├── PointSet.ts │ │ │ ├── RealNumberSpan.ts │ │ │ ├── algorithm.ts │ │ │ ├── assert.ts │ │ │ ├── cancelToken.ts │ │ │ ├── compare.ts │ │ │ ├── copy.ts │ │ │ ├── pointPairMap.ts │ │ │ ├── random.ts │ │ │ └── setOperations.ts │ ├── test │ │ ├── core │ │ │ ├── geometry │ │ │ │ └── Interval.spec.ts │ │ │ ├── io │ │ │ │ └── io.spec.ts │ │ │ └── projectionSolver.spec.ts │ │ ├── data │ │ │ ├── JSONfiles │ │ │ │ ├── README.md │ │ │ │ ├── composers.json │ │ │ │ ├── compound.gv.JSON │ │ │ │ ├── gameofthrones.json │ │ │ │ ├── gameofthrones_with_geometry.JSON │ │ │ │ ├── got.JSON │ │ │ │ ├── ldbxtried.gv.JSON │ │ │ │ └── style_out.JSON │ │ │ ├── graphvis │ │ │ │ ├── AvantGarde.gv │ │ │ │ ├── Bookman.gv │ │ │ │ ├── Courier.gv │ │ │ │ ├── ER.gv │ │ │ │ ├── Heawood.gv │ │ │ │ ├── Helvetica.gv │ │ │ │ ├── KW91.gv │ │ │ │ ├── Latin1.gv │ │ │ │ ├── NaN.gv │ │ │ │ ├── NewCenturySchlbk.gv │ │ │ │ ├── Palatino.gv │ │ │ │ ├── Petersen.gv │ │ │ │ ├── Symbol.gv │ │ │ │ ├── Times.gv │ │ │ │ ├── ZapfChancery.gv │ │ │ │ ├── ZapfDingbats.gv │ │ │ │ ├── a.gv │ │ │ │ ├── abstract.gv │ │ │ │ ├── alf.gv │ │ │ │ ├── arrows.gv │ │ │ │ ├── arrowsize.gv │ │ │ │ ├── awilliams.gv │ │ │ │ ├── b.gv │ │ │ │ ├── b100.gv │ │ │ │ ├── b102.gv │ │ │ │ ├── b103.gv │ │ │ │ ├── b104.gv │ │ │ │ ├── b106.gv │ │ │ │ ├── b117.gv │ │ │ │ ├── b123.gv │ │ │ │ ├── b124.gv │ │ │ │ ├── b135.gv │ │ │ │ ├── b143.gv │ │ │ │ ├── b145.gv │ │ │ │ ├── b146.gv │ │ │ │ ├── b15.gv │ │ │ │ ├── b155.gv │ │ │ │ ├── b22.gv │ │ │ │ ├── b29.gv │ │ │ │ ├── b3.gv │ │ │ │ ├── b33.gv │ │ │ │ ├── b34.gv │ │ │ │ ├── b36.gv │ │ │ │ ├── b491.gv │ │ │ │ ├── b51.gv │ │ │ │ ├── b53.gv │ │ │ │ ├── b545.gv │ │ │ │ ├── b56.gv │ │ │ │ ├── b57.gv │ │ │ │ ├── b58.gv │ │ │ │ ├── b60.gv │ │ │ │ ├── b62.gv │ │ │ │ ├── b68.gv │ │ │ │ ├── b69.gv │ │ │ │ ├── b7.gv │ │ │ │ ├── b71.gv │ │ │ │ ├── b73.gv │ │ │ │ ├── b73a.gv │ │ │ │ ├── b76.gv │ │ │ │ ├── b77.gv │ │ │ │ ├── b786.gv │ │ │ │ ├── b79.gv │ │ │ │ ├── b80.gv │ │ │ │ ├── b80a.gv │ │ │ │ ├── b81.gv │ │ │ │ ├── b85.gv │ │ │ │ ├── b94.gv │ │ │ │ ├── b993.gv │ │ │ │ ├── bad.gv │ │ │ │ ├── badvoro.gv │ │ │ │ ├── big.gv │ │ │ │ ├── biglabel.gv │ │ │ │ ├── cairo.gv │ │ │ │ ├── center.gv │ │ │ │ ├── channel.gv │ │ │ │ ├── clover.gv │ │ │ │ ├── clust.gv │ │ │ │ ├── clust1.gv │ │ │ │ ├── clust2.gv │ │ │ │ ├── clust3.gv │ │ │ │ ├── clust4.gv │ │ │ │ ├── clust5.gv │ │ │ │ ├── clusters.gv │ │ │ │ ├── clustlabel.gv │ │ │ │ ├── clustsquare.gv │ │ │ │ ├── color.gv │ │ │ │ ├── colors.gv │ │ │ │ ├── colorscheme.gv │ │ │ │ ├── compound.gv │ │ │ │ ├── crazy.gv │ │ │ │ ├── ctext.gv │ │ │ │ ├── d.gv │ │ │ │ ├── dd.gv │ │ │ │ ├── decorate.gv │ │ │ │ ├── dfa.gv │ │ │ │ ├── dir.gv │ │ │ │ ├── dpd.gv │ │ │ │ ├── edgeclip.gv │ │ │ │ ├── fdp.gv │ │ │ │ ├── fig6.gv │ │ │ │ ├── flatedge.gv │ │ │ │ ├── fsm.gv │ │ │ │ ├── grammar.gv │ │ │ │ ├── grdangles.gv │ │ │ │ ├── grdcluster.gv │ │ │ │ ├── grdcolors.gv │ │ │ │ ├── grdfillcolor.gv │ │ │ │ ├── grdlinear.gv │ │ │ │ ├── grdlinear_angle.gv │ │ │ │ ├── grdlinear_node.gv │ │ │ │ ├── grdradial.gv │ │ │ │ ├── grdradial_angle.gv │ │ │ │ ├── grdradial_node.gv │ │ │ │ ├── grdshapes.gv │ │ │ │ ├── hashtable.gv │ │ │ │ ├── honda-tokoro.gv │ │ │ │ ├── html.gv │ │ │ │ ├── html2.gv │ │ │ │ ├── imports.gv │ │ │ │ ├── in.gv │ │ │ │ ├── inv_inv.gv │ │ │ │ ├── inv_nul.gv │ │ │ │ ├── inv_val.gv │ │ │ │ ├── japanese.gv │ │ │ │ ├── jcctree.gv │ │ │ │ ├── jsort.gv │ │ │ │ ├── labelclust-fbc.gv │ │ │ │ ├── labelclust-fbd.gv │ │ │ │ ├── labelclust-fbl.gv │ │ │ │ ├── labelclust-fbr.gv │ │ │ │ ├── labelclust-fdc.gv │ │ │ │ ├── labelclust-fdd.gv │ │ │ │ ├── labelclust-fdl.gv │ │ │ │ ├── labelclust-fdr.gv │ │ │ │ ├── labelclust-ftc.gv │ │ │ │ ├── labelclust-ftd.gv │ │ │ │ ├── labelclust-ftl.gv │ │ │ │ ├── labelclust-ftr.gv │ │ │ │ ├── labelclust-nbc.gv │ │ │ │ ├── labelclust-nbd.gv │ │ │ │ ├── labelclust-nbl.gv │ │ │ │ ├── labelclust-nbr.gv │ │ │ │ ├── labelclust-ndc.gv │ │ │ │ ├── labelclust-ndd.gv │ │ │ │ ├── labelclust-ndl.gv │ │ │ │ ├── labelclust-ndr.gv │ │ │ │ ├── labelclust-ntc.gv │ │ │ │ ├── labelclust-ntd.gv │ │ │ │ ├── labelclust-ntl.gv │ │ │ │ ├── labelclust-ntr.gv │ │ │ │ ├── labelroot-fbc.gv │ │ │ │ ├── labelroot-fbd.gv │ │ │ │ ├── labelroot-fbl.gv │ │ │ │ ├── labelroot-fbr.gv │ │ │ │ ├── labelroot-fdc.gv │ │ │ │ ├── labelroot-fdd.gv │ │ │ │ ├── labelroot-fdl.gv │ │ │ │ ├── labelroot-fdr.gv │ │ │ │ ├── labelroot-ftc.gv │ │ │ │ ├── labelroot-ftd.gv │ │ │ │ ├── labelroot-ftl.gv │ │ │ │ ├── labelroot-ftr.gv │ │ │ │ ├── labelroot-nbc.gv │ │ │ │ ├── labelroot-nbd.gv │ │ │ │ ├── labelroot-nbl.gv │ │ │ │ ├── labelroot-nbr.gv │ │ │ │ ├── labelroot-ndc.gv │ │ │ │ ├── labelroot-ndd.gv │ │ │ │ ├── labelroot-ndl.gv │ │ │ │ ├── labelroot-ndr.gv │ │ │ │ ├── labelroot-ntc.gv │ │ │ │ ├── labelroot-ntd.gv │ │ │ │ ├── labelroot-ntl.gv │ │ │ │ ├── labelroot-ntr.gv │ │ │ │ ├── layer.gv │ │ │ │ ├── layer2.gv │ │ │ │ ├── layers.gv │ │ │ │ ├── ldbxtried.gv │ │ │ │ ├── longflat.gv │ │ │ │ ├── lsunix1.gv │ │ │ │ ├── lsunix2.gv │ │ │ │ ├── lsunix3.gv │ │ │ │ ├── mike.gv │ │ │ │ ├── mode.gv │ │ │ │ ├── multi.gv │ │ │ │ ├── nestedclust.gv │ │ │ │ ├── newarrows.gv │ │ │ │ ├── ngk10_4.gv │ │ │ │ ├── nhg.gv │ │ │ │ ├── nojustify.gv │ │ │ │ ├── nul_inv.gv │ │ │ │ ├── nul_nul.gv │ │ │ │ ├── nul_val.gv │ │ │ │ ├── ordering.gv │ │ │ │ ├── overlap.gv │ │ │ │ ├── p.gv │ │ │ │ ├── p2.gv │ │ │ │ ├── p3.gv │ │ │ │ ├── p4.gv │ │ │ │ ├── pack.gv │ │ │ │ ├── pgram.gv │ │ │ │ ├── pm2way.gv │ │ │ │ ├── pmpipe.gv │ │ │ │ ├── polypoly.gv │ │ │ │ ├── ports.gv │ │ │ │ ├── proc3d.gv │ │ │ │ ├── process.gv │ │ │ │ ├── ps.gv │ │ │ │ ├── ps_user_shapes.gv │ │ │ │ ├── pslib.gv │ │ │ │ ├── rd_rules.gv │ │ │ │ ├── record.gv │ │ │ │ ├── record2.gv │ │ │ │ ├── records.gv │ │ │ │ ├── root.gv │ │ │ │ ├── rootlabel.gv │ │ │ │ ├── rowcolsep.gv │ │ │ │ ├── rowe.gv │ │ │ │ ├── russian.gv │ │ │ │ ├── sb_box.gv │ │ │ │ ├── sb_box_dbl.gv │ │ │ │ ├── sb_circle.gv │ │ │ │ ├── sb_circle_dbl.gv │ │ │ │ ├── self.gv │ │ │ │ ├── shapes.gv │ │ │ │ ├── shells.gv │ │ │ │ ├── sides.gv │ │ │ │ ├── size.gv │ │ │ │ ├── sl_box.gv │ │ │ │ ├── sl_box_dbl.gv │ │ │ │ ├── sl_circle.gv │ │ │ │ ├── sl_circle_dbl.gv │ │ │ │ ├── smlred.gv │ │ │ │ ├── sq_rules.gv │ │ │ │ ├── sr_box.gv │ │ │ │ ├── sr_box_dbl.gv │ │ │ │ ├── sr_circle.gv │ │ │ │ ├── sr_circle_dbl.gv │ │ │ │ ├── st_box.gv │ │ │ │ ├── st_box_dbl.gv │ │ │ │ ├── st_circle.gv │ │ │ │ ├── st_circle_dbl.gv │ │ │ │ ├── states.gv │ │ │ │ ├── structs.gv │ │ │ │ ├── style.gv │ │ │ │ ├── train11.gv │ │ │ │ ├── trapeziumlr.gv │ │ │ │ ├── tree.gv │ │ │ │ ├── triedds.gv │ │ │ │ ├── try.gv │ │ │ │ ├── unix.gv │ │ │ │ ├── unix2.gv │ │ │ │ ├── unix2k.gv │ │ │ │ ├── url.gv │ │ │ │ ├── user_shapes.gv │ │ │ │ ├── val_inv.gv │ │ │ │ ├── val_nul.gv │ │ │ │ ├── val_val.gv │ │ │ │ ├── viewfile.gv │ │ │ │ ├── viewport.gv │ │ │ │ ├── weight.gv │ │ │ │ ├── world.gv │ │ │ │ ├── xlabels.gv │ │ │ │ └── xx.gv │ │ │ └── smallGraphs │ │ │ │ ├── clust_.gv │ │ │ │ ├── fork.gv │ │ │ │ └── process.gv │ │ ├── drawing │ │ │ ├── drawingGraph.spec.ts │ │ │ └── layoutEditing │ │ │ │ └── layoutEditor.spec.ts │ │ ├── layout │ │ │ ├── GTreeOverlapRemoval │ │ │ │ └── MstOnDelaunayTriangulation.spec.ts │ │ │ ├── core │ │ │ │ ├── arrowhead.spec.ts │ │ │ │ ├── geomGraph.spec.ts │ │ │ │ └── geomNode.spec.ts │ │ │ ├── driver.spec.ts │ │ │ ├── edgeLabelPlacement.spec.ts │ │ │ ├── incremental │ │ │ │ ├── fastIncrementalLayout.spec.ts │ │ │ │ └── multipole │ │ │ │ │ └── minimumEnclosingDisc.spec.ts │ │ │ ├── layered │ │ │ │ ├── anchor.spec.ts │ │ │ │ ├── layeredLayout.spec.ts │ │ │ │ └── layering │ │ │ │ │ └── NetworkSimplex.spec.ts │ │ │ ├── layoutEditing │ │ │ │ └── incrementalDragger.spec.ts │ │ │ ├── mds │ │ │ │ ├── AllPairsDistances.spec.ts │ │ │ │ ├── SingleSourceDistances.spec.ts │ │ │ │ └── Transform.spec.ts │ │ │ └── sortedBySizeListOfgvFiles.ts │ │ ├── math │ │ │ ├── geometry │ │ │ │ ├── RTree │ │ │ │ │ └── RTree.spec.ts │ │ │ │ ├── bezierSeg.spec.ts │ │ │ │ ├── compassVector.spec.ts │ │ │ │ ├── convexHull.spec.ts │ │ │ │ ├── curve.spec.ts │ │ │ │ ├── ellipse.spec.ts │ │ │ │ ├── geomConstants.spec.ts │ │ │ │ ├── lineSegment.spec.ts │ │ │ │ ├── linearSystem.spec.ts │ │ │ │ ├── parallelogram.spec.ts │ │ │ │ ├── planeTransform.spec.ts │ │ │ │ ├── point.spec.ts │ │ │ │ ├── polyline.spec.ts │ │ │ │ ├── rectangle.spec.ts │ │ │ │ ├── rectanglePacking │ │ │ │ │ └── rectanglePacking.spec.ts │ │ │ │ └── smoothedPolyline.spec.ts │ │ │ └── graphAlgorithms │ │ │ │ ├── MinimumSpanningTreeByPrim.spec.ts │ │ │ │ └── topologicalSort.spec.ts │ │ ├── routing │ │ │ ├── ConstrainedDelaunayTriangulation │ │ │ │ └── Cdt.spec.ts │ │ │ ├── InteractiveEdgeRouter.spec.ts │ │ │ ├── ShapeObstacleCalculator.spec.ts │ │ │ ├── SingleSourceMultipleTargetShortestPathOnVisibilityGraph.spec.ts │ │ │ ├── SingleSourceSingleTargetShortestPathOnVisibilityGraph.spec.ts │ │ │ ├── interactiveObstacleCalculator.spec.ts │ │ │ ├── rectilinear │ │ │ │ ├── PointComparer.spec.ts │ │ │ │ ├── SparseVisibiltyGraphGenerator.spec.ts │ │ │ │ ├── StaticGraphUtility.spec.ts │ │ │ │ ├── eventQueue.spec.ts │ │ │ │ ├── obstacle.spec.ts │ │ │ │ └── rectilinearEdgeRouter.spec.ts │ │ │ ├── shape.spec.ts │ │ │ ├── spline │ │ │ │ ├── bundling │ │ │ │ │ └── bundleRouter.spec.ts │ │ │ │ └── coneSpanner │ │ │ │ │ └── LineSweeper.spec.ts │ │ │ ├── splineRouter.spec.ts │ │ │ └── visibility │ │ │ │ ├── Bimodal.spec.ts │ │ │ │ ├── Polygon.spec.ts │ │ │ │ ├── UnimodalSequence.spec.ts │ │ │ │ └── VisibilityGraph.spec.ts │ │ ├── structs │ │ │ ├── BinaryHeapPriorityQueue.spec.ts │ │ │ ├── BinaryHeapWithComparer.spec.ts │ │ │ ├── BinaryHeapWithComparer.ts │ │ │ ├── basicGraph.spec.ts │ │ │ ├── basicGraphOnEdges.spec.ts │ │ │ ├── entity.spec.ts │ │ │ ├── genericBinaryHeapPriorityQueue.spec.ts │ │ │ ├── graph.spec.ts │ │ │ └── rbTree.spec.ts │ │ └── utils │ │ │ ├── IntPairMap.spec.ts │ │ │ ├── IntPairSet.spec.ts │ │ │ ├── PointMap.spec.ts │ │ │ ├── svgDebugWriter.ts │ │ │ ├── testUtils.ts │ │ │ └── utils.spec.ts │ └── tsconfig.prod.json ├── drawing │ ├── bundle.ts │ ├── package.json │ ├── src │ │ ├── arrowTypeEnum.ts │ │ ├── color.ts │ │ ├── dirTypeEnum.ts │ │ ├── drawingEdge.ts │ │ ├── drawingGraph.ts │ │ ├── drawingNode.ts │ │ ├── drawingObject.ts │ │ ├── index.ts │ │ ├── layoutEditing │ │ │ ├── bumperPusher.ts │ │ │ ├── geomGraphEditor.ts │ │ │ ├── iViewer.ts │ │ │ ├── iViewerEdge.ts │ │ │ ├── iViewerGraph.ts │ │ │ ├── iViewerNode.ts │ │ │ ├── iViewerObject.ts │ │ │ ├── incrementalDragger.ts │ │ │ ├── labelFixture.ts │ │ │ ├── layoutEditor.ts │ │ │ ├── modifierKeys.ts │ │ │ ├── objectUnderMouseCursorChangedEventArgs.ts │ │ │ ├── polylineCornerType.ts │ │ │ ├── undoRedoAction.ts │ │ │ └── undoRedoActionsList.ts │ │ ├── orderingEnum.ts │ │ ├── rankEnum.ts │ │ ├── shapeEnum.ts │ │ ├── styleEnum.ts │ │ └── textMeasurerOptions.ts │ └── tsconfig.prod.json ├── parser │ ├── bundle.ts │ ├── package.json │ ├── src │ │ ├── dotparser.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── test │ │ └── dotparser.spec.ts │ └── tsconfig.prod.json ├── renderer-common │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── layout.ts │ │ ├── text-measurer.ts │ │ ├── utils.ts │ │ └── workers │ │ │ └── layoutWorker.ts │ └── tsconfig.prod.json ├── renderer-svg │ ├── bundle.ts │ ├── package.json │ ├── src │ │ ├── event-source.ts │ │ ├── index.ts │ │ ├── rendererSvg.ts │ │ └── svgCreator.ts │ ├── tsconfig.prod.json │ └── worker.ts └── renderer-webgl │ ├── bundle.ts │ ├── graph-style-schema.json │ ├── package.json │ ├── src │ ├── controls │ │ └── search-control.ts │ ├── event-source.ts │ ├── index.ts │ ├── layers │ │ ├── arrows.svg │ │ ├── arrows.ts │ │ ├── curve-layer.ts │ │ ├── geometry-layer.ts │ │ ├── get-edge-layers.ts │ │ ├── get-node-layers.ts │ │ ├── graph-highlighter.ts │ │ ├── graph-layer.ts │ │ └── graph-style-extension.ts │ ├── renderer.ts │ └── styles │ │ ├── graph-style-evaluator.ts │ │ └── graph-style-spec.ts │ ├── tsconfig.prod.json │ └── worker.ts ├── package.json ├── tsconfig.json ├── tsconfig.prod.json ├── website ├── .gitignore ├── .prettierrc ├── README.md ├── babel.config.js ├── docs │ ├── api.md │ ├── configuration.md │ ├── getting-started.md │ └── intro.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ └── index.tsx ├── static │ ├── .nojekyll │ ├── editors │ │ └── msagl.html │ ├── images │ │ ├── awilliams_blackbg.svg │ │ ├── awilliams_whitebg.svg │ │ ├── bundleRouting.dark.svg │ │ ├── bundleRouting.svg │ │ ├── mdsShowAPI.svg │ │ ├── mdsShowAPI_dark.svg │ │ ├── rectRouting.dark.svg │ │ ├── rectRouting.svg │ │ ├── showAPI.svg │ │ ├── showAPI_dark.svg │ │ ├── splineRouting.dark.svg │ │ └── splineRouting.svg │ ├── img │ │ ├── gear-svgrepo-com.svg │ │ ├── logo.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ ├── undraw_docusaurus_tree.svg │ │ ├── undraw_image_viewer_re_7ejc.svg │ │ └── undraw_start_building_re_xani.svg │ ├── layoutedit.mp4 │ ├── renderer-svg-no-parser │ │ ├── app.js │ │ └── index.html │ ├── renderer-svg │ │ ├── app.js │ │ └── index.html │ ├── renderer-webgl │ │ ├── app.js │ │ ├── index.html │ │ └── spinner.gif │ └── video.png ├── tools │ └── msagl.html ├── tsconfig.json └── yarn.lock └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | preserve/** 2 | /*.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tsconfig.json 2 | src -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/images/awilliams_blackbg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/docs/images/awilliams_blackbg.svg -------------------------------------------------------------------------------- /docs/images/awilliams_whitebg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/docs/images/awilliams_whitebg.svg -------------------------------------------------------------------------------- /docs/images/mdsShowAPI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/docs/images/mdsShowAPI.svg -------------------------------------------------------------------------------- /docs/images/mdsShowAPI_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/docs/images/mdsShowAPI_dark.svg -------------------------------------------------------------------------------- /docs/images/showAPI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/docs/images/showAPI.svg -------------------------------------------------------------------------------- /docs/images/showAPI_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/docs/images/showAPI_dark.svg -------------------------------------------------------------------------------- /docs/layoutedit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/docs/layoutedit.mp4 -------------------------------------------------------------------------------- /docs/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/docs/video.png -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/esbuild.js -------------------------------------------------------------------------------- /examples/graph-style/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/graph-style/build.js -------------------------------------------------------------------------------- /examples/graph-style/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/graph-style/index.html -------------------------------------------------------------------------------- /examples/graph-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/graph-style/package.json -------------------------------------------------------------------------------- /examples/graph-style/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/graph-style/src/app.ts -------------------------------------------------------------------------------- /examples/graph-style/src/default-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/graph-style/src/default-style.ts -------------------------------------------------------------------------------- /examples/graph-style/src/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/graph-style/src/editor.ts -------------------------------------------------------------------------------- /examples/graph-style/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/graph-style/tsconfig.json -------------------------------------------------------------------------------- /examples/mds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/mds/index.html -------------------------------------------------------------------------------- /examples/minimal_svg_renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_svg_renderer/package.json -------------------------------------------------------------------------------- /examples/minimal_svg_renderer/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_svg_renderer/src/index.html -------------------------------------------------------------------------------- /examples/minimal_svg_renderer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_svg_renderer/src/main.ts -------------------------------------------------------------------------------- /examples/minimal_svg_renderer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_svg_renderer/tsconfig.json -------------------------------------------------------------------------------- /examples/minimal_svg_renderer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_svg_renderer/yarn.lock -------------------------------------------------------------------------------- /examples/minimal_webgl_renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_webgl_renderer/package.json -------------------------------------------------------------------------------- /examples/minimal_webgl_renderer/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_webgl_renderer/src/index.html -------------------------------------------------------------------------------- /examples/minimal_webgl_renderer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_webgl_renderer/src/main.ts -------------------------------------------------------------------------------- /examples/minimal_webgl_renderer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_webgl_renderer/tsconfig.json -------------------------------------------------------------------------------- /examples/minimal_webgl_renderer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/minimal_webgl_renderer/yarn.lock -------------------------------------------------------------------------------- /examples/script/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/script/index.html -------------------------------------------------------------------------------- /examples/svg-renderer-no-parser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer-no-parser/index.html -------------------------------------------------------------------------------- /examples/svg-renderer-no-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer-no-parser/package.json -------------------------------------------------------------------------------- /examples/svg-renderer-no-parser/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer-no-parser/src/app.ts -------------------------------------------------------------------------------- /examples/svg-renderer-no-parser/src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer-no-parser/src/settings.ts -------------------------------------------------------------------------------- /examples/svg-renderer-no-parser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer-no-parser/tsconfig.json -------------------------------------------------------------------------------- /examples/svg-renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer/index.html -------------------------------------------------------------------------------- /examples/svg-renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer/package.json -------------------------------------------------------------------------------- /examples/svg-renderer/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer/src/app.ts -------------------------------------------------------------------------------- /examples/svg-renderer/src/drag-n-drop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer/src/drag-n-drop.ts -------------------------------------------------------------------------------- /examples/svg-renderer/src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer/src/settings.ts -------------------------------------------------------------------------------- /examples/svg-renderer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/svg-renderer/tsconfig.json -------------------------------------------------------------------------------- /examples/webgl-renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/webgl-renderer/index.html -------------------------------------------------------------------------------- /examples/webgl-renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/webgl-renderer/package.json -------------------------------------------------------------------------------- /examples/webgl-renderer/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/webgl-renderer/spinner.gif -------------------------------------------------------------------------------- /examples/webgl-renderer/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/webgl-renderer/src/app.ts -------------------------------------------------------------------------------- /examples/webgl-renderer/src/drag-n-drop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/webgl-renderer/src/drag-n-drop.ts -------------------------------------------------------------------------------- /examples/webgl-renderer/src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/webgl-renderer/src/settings.ts -------------------------------------------------------------------------------- /examples/webgl-renderer/src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/webgl-renderer/src/worker.ts -------------------------------------------------------------------------------- /examples/webgl-renderer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/examples/webgl-renderer/tsconfig.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/jest.config.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/lerna.json -------------------------------------------------------------------------------- /modules/core/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/bundle.ts -------------------------------------------------------------------------------- /modules/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/package.json -------------------------------------------------------------------------------- /modules/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/index.ts -------------------------------------------------------------------------------- /modules/core/src/layout/commonLayoutSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/commonLayoutSettings.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/RRect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/RRect.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/arrowhead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/arrowhead.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/curvePort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/curvePort.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/floatingPort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/floatingPort.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/geomCluster.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/src/layout/core/geomEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/geomEdge.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/geomGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/geomGraph.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/geomLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/geomLabel.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/geomNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/geomNode.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/geomObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/geomObject.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/hookUpAnywhereFromInsidePort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/hookUpAnywhereFromInsidePort.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/index.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/port.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/relativeFloatingPort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/relativeFloatingPort.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/tile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/tile.ts -------------------------------------------------------------------------------- /modules/core/src/layout/core/tileMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/core/tileMap.ts -------------------------------------------------------------------------------- /modules/core/src/layout/driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/driver.ts -------------------------------------------------------------------------------- /modules/core/src/layout/edgeLabelPlacement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/edgeLabelPlacement.ts -------------------------------------------------------------------------------- /modules/core/src/layout/gTreeOverlapRemoval/MstLineSweeper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/gTreeOverlapRemoval/MstLineSweeper.ts -------------------------------------------------------------------------------- /modules/core/src/layout/iLayoutSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/iLayoutSettings.ts -------------------------------------------------------------------------------- /modules/core/src/layout/incremental/fiEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/incremental/fiEdge.ts -------------------------------------------------------------------------------- /modules/core/src/layout/incremental/fiNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/incremental/fiNode.ts -------------------------------------------------------------------------------- /modules/core/src/layout/incremental/iPsepCola.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/incremental/iPsepCola.ts -------------------------------------------------------------------------------- /modules/core/src/layout/incremental/iPsepColaSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/incremental/iPsepColaSettings.ts -------------------------------------------------------------------------------- /modules/core/src/layout/incremental/multipole/disc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/incremental/multipole/disc.ts -------------------------------------------------------------------------------- /modules/core/src/layout/incremental/multipole/kdTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/incremental/multipole/kdTree.ts -------------------------------------------------------------------------------- /modules/core/src/layout/initialLayout/geomConnectedComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/initialLayout/geomConnectedComponent.ts -------------------------------------------------------------------------------- /modules/core/src/layout/initialLayout/iGeomGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/initialLayout/iGeomGraph.ts -------------------------------------------------------------------------------- /modules/core/src/layout/initialLayout/initialLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/initialLayout/initialLayout.ts -------------------------------------------------------------------------------- /modules/core/src/layout/initialLayout/layoutAlgorithmHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/initialLayout/layoutAlgorithmHelpers.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/Balancing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/Balancing.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/CycleRemoval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/CycleRemoval.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/Database.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/EdgePathsInserter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/EdgePathsInserter.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/HierarchyCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/HierarchyCalculator.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/LayerArrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/LayerArrays.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/LayerInserter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/LayerInserter.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/NodeKind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/NodeKind.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/ProperLayeredGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/ProperLayeredGraph.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/RefinerBetweenTwoLayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/RefinerBetweenTwoLayers.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/anchor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/anchor.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/iIntEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/iIntEdge.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/layerDirectionEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/layerDirectionEnum.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/layerEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/layerEdge.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/layeredLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/layeredLayout.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/layering/NetworkSimplex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/layering/NetworkSimplex.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/layering/layerCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/layering/layerCalculator.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/layering/longestPathLayering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/layering/longestPathLayering.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/layering/networkEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/layering/networkEdge.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/ordering/layerInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/ordering/layerInfo.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/ordering/metroMapOrdering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/ordering/metroMapOrdering.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/ordering/ordering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/ordering/ordering.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/ordering/orderingMeasure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/ordering/orderingMeasure.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/polyIntEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/polyIntEdge.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/routing.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/smoothedPolylineCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/smoothedPolylineCalculator.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/sugiyamaLayoutSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/sugiyamaLayoutSettings.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/xCoordsWithAlignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/xCoordsWithAlignment.ts -------------------------------------------------------------------------------- /modules/core/src/layout/layered/xLayoutGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/layered/xLayoutGraph.ts -------------------------------------------------------------------------------- /modules/core/src/layout/mds/AllPairsDistances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/mds/AllPairsDistances.ts -------------------------------------------------------------------------------- /modules/core/src/layout/mds/SingleSourceDistances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/mds/SingleSourceDistances.ts -------------------------------------------------------------------------------- /modules/core/src/layout/mds/Transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/mds/Transform.ts -------------------------------------------------------------------------------- /modules/core/src/layout/mds/mDSGraphLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/mds/mDSGraphLayout.ts -------------------------------------------------------------------------------- /modules/core/src/layout/mds/mDSLayoutSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/mds/mDSLayoutSettings.ts -------------------------------------------------------------------------------- /modules/core/src/layout/mds/multiDimensionalScaling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/mds/multiDimensionalScaling.ts -------------------------------------------------------------------------------- /modules/core/src/layout/mds/pivotDistances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/mds/pivotDistances.ts -------------------------------------------------------------------------------- /modules/core/src/layout/mds/pivotMDS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/layout/mds/pivotMDS.ts -------------------------------------------------------------------------------- /modules/core/src/math/RBTree/rbColor.ts: -------------------------------------------------------------------------------- 1 | export enum RBColor { 2 | Red, 3 | Black, 4 | } 5 | -------------------------------------------------------------------------------- /modules/core/src/math/RBTree/rbNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/RBTree/rbNode.ts -------------------------------------------------------------------------------- /modules/core/src/math/RBTree/rbTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/RBTree/rbTree.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/IRectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/IRectangle.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/Interval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/Interval.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/RTree/hitTestBehavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/RTree/hitTestBehavior.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/RTree/rTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/RTree/rTree.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/RTree/rectangleNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/RTree/rectangleNode.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/RTree/rectangleNodeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/RTree/rectangleNodeUtils.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/bezierSeg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/bezierSeg.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/closestPointOnCurve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/closestPointOnCurve.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/compassVector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/compassVector.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/convexHull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/convexHull.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/cornerSite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/cornerSite.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/curve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/curve.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/curveFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/curveFactory.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/debugCurve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/debugCurve.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/direction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/direction.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/ellipse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/ellipse.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/geomConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/geomConstants.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/icurve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/icurve.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/index.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/intersectionInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/intersectionInfo.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/lineSegment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/lineSegment.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/linearSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/linearSystem.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/minDistCurveCurve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/minDistCurveCurve.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/parallelogram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/parallelogram.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/parallelogramNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/parallelogramNode.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/planeTransformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/planeTransformation.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/point.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/pointPair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/pointPair.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/polyline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/polyline.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/polylinePoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/polylinePoint.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/rectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/rectangle.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/rectanglePacking/Packing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/rectanglePacking/Packing.ts -------------------------------------------------------------------------------- /modules/core/src/math/geometry/smoothedPolyline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/geometry/smoothedPolyline.ts -------------------------------------------------------------------------------- /modules/core/src/math/graphAlgorithms/topologicalSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/graphAlgorithms/topologicalSort.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/Block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/Block.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/BlockVector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/BlockVector.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/Constraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/Constraint.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/ConstraintVector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/ConstraintVector.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/DfDvNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/DfDvNode.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/Parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/Parameters.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/QPSC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/QPSC.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/Solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/Solution.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/Solver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/Solver.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/SolverAlgorithm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/SolverAlgorithm.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/SolverShell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/SolverShell.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/UniformSolverVar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/UniformSolverVar.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/Variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/Variable.ts -------------------------------------------------------------------------------- /modules/core/src/math/projectionSolver/ViolationCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/math/projectionSolver/ViolationCache.ts -------------------------------------------------------------------------------- /modules/core/src/routing/BundlingSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/BundlingSettings.ts -------------------------------------------------------------------------------- /modules/core/src/routing/ClusterBoundaryPort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/ClusterBoundaryPort.ts -------------------------------------------------------------------------------- /modules/core/src/routing/Corner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/Corner.ts -------------------------------------------------------------------------------- /modules/core/src/routing/EdgeRoutingMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/EdgeRoutingMode.ts -------------------------------------------------------------------------------- /modules/core/src/routing/EdgeRoutingSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/EdgeRoutingSettings.ts -------------------------------------------------------------------------------- /modules/core/src/routing/MultiEdgeRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/MultiEdgeRouter.ts -------------------------------------------------------------------------------- /modules/core/src/routing/PreGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/PreGraph.ts -------------------------------------------------------------------------------- /modules/core/src/routing/RelativeShape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/RelativeShape.ts -------------------------------------------------------------------------------- /modules/core/src/routing/ShapeCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/ShapeCreator.ts -------------------------------------------------------------------------------- /modules/core/src/routing/ShapeCreatorForRoutingToParents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/ShapeCreatorForRoutingToParents.ts -------------------------------------------------------------------------------- /modules/core/src/routing/ShapeObstacleCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/ShapeObstacleCalculator.ts -------------------------------------------------------------------------------- /modules/core/src/routing/StraightLineEdges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/StraightLineEdges.ts -------------------------------------------------------------------------------- /modules/core/src/routing/TightLooseCouple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/TightLooseCouple.ts -------------------------------------------------------------------------------- /modules/core/src/routing/interactiveEdgeRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/interactiveEdgeRouter.ts -------------------------------------------------------------------------------- /modules/core/src/routing/interactiveObstacleCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/interactiveObstacleCalculator.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/AxisCoordinateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/AxisCoordinateEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/BasicObstacleSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/BasicObstacleSide.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/BasicVertexEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/BasicVertexEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/EventQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/EventQueue.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/FreePoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/FreePoint.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/GroupBoundaryCrossing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/GroupBoundaryCrossing.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/HighReflectionEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/HighReflectionEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/LookaheadScan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/LookaheadScan.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/LowReflectionEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/LowReflectionEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/MiscVertexEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/MiscVertexEvents.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/MsmtRectilinearPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/MsmtRectilinearPath.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/NeighborSides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/NeighborSides.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/ObstaclePort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/ObstaclePort.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/ObstaclePortEntrance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/ObstaclePortEntrance.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/ObstacleTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/ObstacleTree.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/OpenVertexEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/OpenVertexEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/OverlapConvexHull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/OverlapConvexHull.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/PointAndCrossings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/PointAndCrossings.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/PointAndCrossingsList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/PointAndCrossingsList.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/PointComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/PointComparer.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/PortManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/PortManager.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/RectilinearEdgeRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/RectilinearEdgeRouter.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/RectilinearScanLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/RectilinearScanLine.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/ScanDirection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/ScanDirection.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/ScanSegment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/ScanSegment.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/ScanSegmentTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/ScanSegmentTree.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/ScanSegmentVector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/ScanSegmentVector.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/ScanSegmentVectorItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/ScanSegmentVectorItem.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/SegmentIntersector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/SegmentIntersector.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/SpliceUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/SpliceUtility.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/SsstRectilinearPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/SsstRectilinearPath.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/StaticGraphUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/StaticGraphUtility.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/TransientGraphUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/TransientGraphUtility.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/VertexEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/VertexEntry.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/basicReflectionEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/basicReflectionEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/nudging/AxisEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/nudging/AxisEdge.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/nudging/LinkedPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/nudging/LinkedPoint.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/nudging/Nudger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/nudging/Nudger.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/nudging/Path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/nudging/Path.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/nudging/PathEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/nudging/PathEdge.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/nudging/PathMerger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/nudging/PathMerger.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/nudging/PathRefiner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/nudging/PathRefiner.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/nudging/SegWithIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/nudging/SegWithIndex.ts -------------------------------------------------------------------------------- /modules/core/src/routing/rectilinear/obstacle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/rectilinear/obstacle.ts -------------------------------------------------------------------------------- /modules/core/src/routing/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/shape.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/BundleBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/BundleBase.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/BundleInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/BundleInfo.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/BundleRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/BundleRouter.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/BundlingStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/BundlingStatus.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/CdtIntersections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/CdtIntersections.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/CdtThreader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/CdtThreader.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/ChannelFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/ChannelFlag.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/CostCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/CostCalculator.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/EdgeNudger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/EdgeNudger.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/FlipCollapser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/FlipCollapser.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/FlipSwitcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/FlipSwitcher.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/HubDebugger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/HubDebugger.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/HubRadiiCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/HubRadiiCalculator.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/IntersectionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/IntersectionCache.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/Intersections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/Intersections.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/MetroGraphData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/MetroGraphData.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/MetroLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/MetroLine.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/MetroNodeInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/MetroNodeInfo.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/OrientedHubSegment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/OrientedHubSegment.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/PathFixer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/PathFixer.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/PointPairOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/PointPairOrder.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/SdBoneEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/SdBoneEdge.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/SdShortestPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/SdShortestPath.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/SdVertex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/SdVertex.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/SimulatedAnnealing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/SimulatedAnnealing.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/Station.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/Station.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/StationEdgeInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/StationEdgeInfo.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/TimeMeasurer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/TimeMeasurer.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/bundling/tupleMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/bundling/tupleMap.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/BrokenConeSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/BrokenConeSide.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/Cone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/Cone.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/ConeLeftSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/ConeLeftSide.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/ConeRightSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/ConeRightSide.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/ConeSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/ConeSide.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/ConeSpanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/ConeSpanner.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/IConeSweeper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/IConeSweeper.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/LeftVertexEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/LeftVertexEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/LineSweeper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/LineSweeper.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/ObstacleSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/ObstacleSide.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/SweepEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/SweepEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/coneSpanner/VertexEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/coneSpanner/VertexEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/spline/pathOptimizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/spline/pathOptimizer.ts -------------------------------------------------------------------------------- /modules/core/src/routing/splineRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/splineRouter.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/BimodalSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/BimodalSequence.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/Diagonal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/Diagonal.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/Drawings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/Drawings.png -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/LineSweeperBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/LineSweeperBase.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/ObstacleSideComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/ObstacleSideComparer.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/Polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/Polygon.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/PortObstacleEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/PortObstacleEvent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/SegmentBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/SegmentBase.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/Stem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/Stem.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/StemStartPointComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/StemStartPointComparer.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/Tangent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/Tangent.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/TangentPair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/TangentPair.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/TollFreeVisibilityEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/TollFreeVisibilityEdge.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/UnimodalSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/UnimodalSequence.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/VisibilityEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/VisibilityEdge.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/VisibilityGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/VisibilityGraph.ts -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/VisibilityKind.ts: -------------------------------------------------------------------------------- 1 | export enum VisibilityKind { 2 | Regular, 3 | Tangent, 4 | } 5 | -------------------------------------------------------------------------------- /modules/core/src/routing/visibility/VisibilityVertex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/routing/visibility/VisibilityVertex.ts -------------------------------------------------------------------------------- /modules/core/src/structs/BasicGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/BasicGraph.ts -------------------------------------------------------------------------------- /modules/core/src/structs/BinaryHeapPriorityQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/BinaryHeapPriorityQueue.ts -------------------------------------------------------------------------------- /modules/core/src/structs/BinaryHeapWithComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/BinaryHeapWithComparer.ts -------------------------------------------------------------------------------- /modules/core/src/structs/algorithmData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/algorithmData.ts -------------------------------------------------------------------------------- /modules/core/src/structs/attribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/attribute.ts -------------------------------------------------------------------------------- /modules/core/src/structs/attributeRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/attributeRegistry.ts -------------------------------------------------------------------------------- /modules/core/src/structs/basicGraphOnEdges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/basicGraphOnEdges.ts -------------------------------------------------------------------------------- /modules/core/src/structs/edge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/edge.ts -------------------------------------------------------------------------------- /modules/core/src/structs/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/entity.ts -------------------------------------------------------------------------------- /modules/core/src/structs/genericBinaryHeapPriorityQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/genericBinaryHeapPriorityQueue.ts -------------------------------------------------------------------------------- /modules/core/src/structs/genericHeapElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/genericHeapElement.ts -------------------------------------------------------------------------------- /modules/core/src/structs/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/graph.ts -------------------------------------------------------------------------------- /modules/core/src/structs/iedge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/iedge.ts -------------------------------------------------------------------------------- /modules/core/src/structs/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/label.ts -------------------------------------------------------------------------------- /modules/core/src/structs/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/node.ts -------------------------------------------------------------------------------- /modules/core/src/structs/nodeCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/structs/nodeCollection.ts -------------------------------------------------------------------------------- /modules/core/src/utils/CoupleSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/CoupleSet.ts -------------------------------------------------------------------------------- /modules/core/src/utils/IntPair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/IntPair.ts -------------------------------------------------------------------------------- /modules/core/src/utils/IntPairMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/IntPairMap.ts -------------------------------------------------------------------------------- /modules/core/src/utils/IntPairSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/IntPairSet.ts -------------------------------------------------------------------------------- /modules/core/src/utils/PointMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/PointMap.ts -------------------------------------------------------------------------------- /modules/core/src/utils/PointSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/PointSet.ts -------------------------------------------------------------------------------- /modules/core/src/utils/RealNumberSpan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/RealNumberSpan.ts -------------------------------------------------------------------------------- /modules/core/src/utils/algorithm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/algorithm.ts -------------------------------------------------------------------------------- /modules/core/src/utils/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/assert.ts -------------------------------------------------------------------------------- /modules/core/src/utils/cancelToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/cancelToken.ts -------------------------------------------------------------------------------- /modules/core/src/utils/compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/compare.ts -------------------------------------------------------------------------------- /modules/core/src/utils/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/copy.ts -------------------------------------------------------------------------------- /modules/core/src/utils/pointPairMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/pointPairMap.ts -------------------------------------------------------------------------------- /modules/core/src/utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/random.ts -------------------------------------------------------------------------------- /modules/core/src/utils/setOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/src/utils/setOperations.ts -------------------------------------------------------------------------------- /modules/core/test/core/geometry/Interval.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/core/geometry/Interval.spec.ts -------------------------------------------------------------------------------- /modules/core/test/core/io/io.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/core/io/io.spec.ts -------------------------------------------------------------------------------- /modules/core/test/core/projectionSolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/core/projectionSolver.spec.ts -------------------------------------------------------------------------------- /modules/core/test/data/JSONfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/JSONfiles/README.md -------------------------------------------------------------------------------- /modules/core/test/data/JSONfiles/composers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/JSONfiles/composers.json -------------------------------------------------------------------------------- /modules/core/test/data/JSONfiles/compound.gv.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/JSONfiles/compound.gv.JSON -------------------------------------------------------------------------------- /modules/core/test/data/JSONfiles/gameofthrones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/JSONfiles/gameofthrones.json -------------------------------------------------------------------------------- /modules/core/test/data/JSONfiles/got.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/JSONfiles/got.JSON -------------------------------------------------------------------------------- /modules/core/test/data/JSONfiles/ldbxtried.gv.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/JSONfiles/ldbxtried.gv.JSON -------------------------------------------------------------------------------- /modules/core/test/data/JSONfiles/style_out.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/JSONfiles/style_out.JSON -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/AvantGarde.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/AvantGarde.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/Bookman.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/Bookman.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/Courier.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/Courier.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ER.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/ER.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/Heawood.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/Heawood.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/Helvetica.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/Helvetica.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/KW91.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/KW91.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/Latin1.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/Latin1.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/NaN.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/NaN.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/NewCenturySchlbk.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/NewCenturySchlbk.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/Palatino.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/Palatino.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/Petersen.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/Petersen.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/Symbol.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/Symbol.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/Times.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/Times.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ZapfChancery.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/ZapfChancery.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ZapfDingbats.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/ZapfDingbats.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/a.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/a.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/abstract.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/abstract.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/alf.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/alf.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/arrows.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/arrows.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/arrowsize.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/arrowsize.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/awilliams.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/awilliams.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b100.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b100.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b102.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b102.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b103.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b103.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b104.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b104.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b106.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b106.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b117.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b117.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b123.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b123.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b124.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b124.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b135.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b135.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b143.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b143.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b145.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b145.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b146.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b146.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b15.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b15.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b155.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b155.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b22.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b22.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b29.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b29.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b3.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b3.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b33.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b33.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b34.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b34.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b36.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b36.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b491.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b491.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b51.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b51.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b53.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b53.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b545.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b545.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b56.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b56.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b57.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b57.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b58.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b58.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b60.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b60.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b62.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b62.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b68.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b68.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b69.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b69.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b7.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b7.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b71.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b71.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b73.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b73.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b73a.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b73a.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b76.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b76.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b77.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b77.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b786.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b786.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b79.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b79.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b80.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b80.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b80a.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b80a.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b81.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b81.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b85.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b85.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b94.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b94.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/b993.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/b993.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/bad.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/bad.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/badvoro.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/badvoro.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/big.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/big.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/biglabel.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/biglabel.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/cairo.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/cairo.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/center.gv: -------------------------------------------------------------------------------- 1 | digraph G { 2 | center=true 3 | a -> { b c} 4 | } 5 | -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/channel.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/channel.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clover.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clover.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clust.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clust.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clust1.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clust1.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clust2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clust2.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clust3.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clust3.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clust4.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clust4.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clust5.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clust5.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clusters.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clusters.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clustlabel.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clustlabel.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/clustsquare.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/clustsquare.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/color.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/color.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/colors.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/colors.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/colorscheme.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/colorscheme.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/compound.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/compound.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/crazy.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/crazy.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ctext.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/ctext.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/d.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/d.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/dd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/dd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/decorate.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/decorate.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/dfa.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/dfa.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/dir.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/dir.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/dpd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/dpd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/edgeclip.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/edgeclip.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/fdp.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/fdp.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/fig6.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/fig6.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/flatedge.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/flatedge.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/fsm.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/fsm.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grammar.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grammar.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdangles.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdangles.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdcluster.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdcluster.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdcolors.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdcolors.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdfillcolor.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdfillcolor.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdlinear.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdlinear.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdlinear_angle.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdlinear_angle.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdlinear_node.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdlinear_node.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdradial.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdradial.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdradial_angle.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdradial_angle.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdradial_node.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdradial_node.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/grdshapes.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/grdshapes.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/hashtable.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/hashtable.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/honda-tokoro.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/honda-tokoro.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/html.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/html.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/html2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/html2.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/imports.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/imports.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/in.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/in.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/inv_inv.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/inv_inv.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/inv_nul.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/inv_nul.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/inv_val.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/inv_val.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/japanese.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/japanese.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/jcctree.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/jcctree.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/jsort.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/jsort.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-fbc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-fbc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-fbd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-fbd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-fbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-fbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-fbr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-fbr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-fdc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-fdc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-fdd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-fdd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-fdl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-fdl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-fdr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-fdr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ftc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ftc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ftd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ftd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ftl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ftl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ftr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ftr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-nbc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-nbc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-nbd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-nbd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-nbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-nbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-nbr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-nbr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ndc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ndc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ndd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ndd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ndl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ndl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ndr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ndr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ntc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ntc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ntd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ntd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ntl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ntl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelclust-ntr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelclust-ntr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-fbc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-fbc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-fbd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-fbd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-fbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-fbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-fbr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-fbr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-fdc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-fdc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-fdd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-fdd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-fdl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-fdl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-fdr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-fdr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ftc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ftc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ftd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ftd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ftl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ftl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ftr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ftr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-nbc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-nbc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-nbd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-nbd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-nbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-nbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-nbr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-nbr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ndc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ndc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ndd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ndd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ndl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ndl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ndr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ndr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ntc.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ntc.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ntd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ntd.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ntl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ntl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/labelroot-ntr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/labelroot-ntr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/layer.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/layer.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/layer2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/layer2.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/layers.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/layers.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ldbxtried.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/ldbxtried.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/longflat.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/longflat.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/lsunix1.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/lsunix1.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/lsunix2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/lsunix2.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/lsunix3.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/lsunix3.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/mike.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/mike.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/mode.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/mode.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/multi.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/multi.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/nestedclust.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/nestedclust.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/newarrows.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/newarrows.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ngk10_4.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/ngk10_4.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/nhg.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/nhg.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/nojustify.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/nojustify.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/nul_inv.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/nul_inv.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/nul_nul.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/nul_nul.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/nul_val.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/nul_val.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ordering.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/ordering.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/overlap.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/overlap.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/p.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/p.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/p2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/p2.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/p3.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/p3.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/p4.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/p4.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/pack.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/pack.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/pgram.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/pgram.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/pm2way.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/pm2way.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/pmpipe.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/pmpipe.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/polypoly.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/polypoly.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ports.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/ports.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/proc3d.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/proc3d.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/process.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/process.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ps.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/ps.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/ps_user_shapes.gv: -------------------------------------------------------------------------------- 1 | digraph G { 2 | n [label=""] 3 | } 4 | -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/pslib.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/pslib.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/rd_rules.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/rd_rules.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/record.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/record.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/record2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/record2.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/records.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/records.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/root.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/root.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/rootlabel.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/rootlabel.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/rowcolsep.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/rowcolsep.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/rowe.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/rowe.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/russian.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/russian.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sb_box.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sb_box.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sb_box_dbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sb_box_dbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sb_circle.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sb_circle.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sb_circle_dbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sb_circle_dbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/self.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/self.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/shapes.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/shapes.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/shells.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/shells.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sides.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sides.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/size.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/size.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sl_box.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sl_box.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sl_box_dbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sl_box_dbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sl_circle.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sl_circle.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sl_circle_dbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sl_circle_dbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/smlred.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/smlred.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sq_rules.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sq_rules.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sr_box.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sr_box.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sr_box_dbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sr_box_dbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sr_circle.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sr_circle.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/sr_circle_dbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/sr_circle_dbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/st_box.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/st_box.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/st_box_dbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/st_box_dbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/st_circle.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/st_circle.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/st_circle_dbl.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/st_circle_dbl.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/states.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/states.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/structs.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/structs.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/style.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/style.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/train11.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/train11.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/trapeziumlr.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/trapeziumlr.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/tree.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/tree.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/triedds.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/triedds.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/try.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/try.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/unix.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/unix.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/unix2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/unix2.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/unix2k.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/unix2k.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/url.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/url.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/user_shapes.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/user_shapes.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/val_inv.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/val_inv.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/val_nul.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/val_nul.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/val_val.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/val_val.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/viewfile.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/viewfile.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/viewport.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/viewport.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/weight.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/weight.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/world.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/world.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/xlabels.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/xlabels.gv -------------------------------------------------------------------------------- /modules/core/test/data/graphvis/xx.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/graphvis/xx.gv -------------------------------------------------------------------------------- /modules/core/test/data/smallGraphs/clust_.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/smallGraphs/clust_.gv -------------------------------------------------------------------------------- /modules/core/test/data/smallGraphs/fork.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/smallGraphs/fork.gv -------------------------------------------------------------------------------- /modules/core/test/data/smallGraphs/process.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/data/smallGraphs/process.gv -------------------------------------------------------------------------------- /modules/core/test/drawing/drawingGraph.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/drawing/drawingGraph.spec.ts -------------------------------------------------------------------------------- /modules/core/test/drawing/layoutEditing/layoutEditor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/drawing/layoutEditing/layoutEditor.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/core/arrowhead.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/core/arrowhead.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/core/geomGraph.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/core/geomGraph.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/core/geomNode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/core/geomNode.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/driver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/driver.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/edgeLabelPlacement.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/edgeLabelPlacement.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/layered/anchor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/layered/anchor.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/layered/layeredLayout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/layered/layeredLayout.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/mds/AllPairsDistances.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/mds/AllPairsDistances.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/mds/SingleSourceDistances.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/mds/SingleSourceDistances.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/mds/Transform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/mds/Transform.spec.ts -------------------------------------------------------------------------------- /modules/core/test/layout/sortedBySizeListOfgvFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/layout/sortedBySizeListOfgvFiles.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/RTree/RTree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/RTree/RTree.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/bezierSeg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/bezierSeg.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/compassVector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/compassVector.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/convexHull.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/convexHull.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/curve.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/curve.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/ellipse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/ellipse.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/geomConstants.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/geomConstants.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/lineSegment.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/lineSegment.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/linearSystem.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/linearSystem.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/parallelogram.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/parallelogram.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/planeTransform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/planeTransform.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/point.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/point.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/polyline.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/polyline.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/rectangle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/rectangle.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/geometry/smoothedPolyline.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/geometry/smoothedPolyline.spec.ts -------------------------------------------------------------------------------- /modules/core/test/math/graphAlgorithms/topologicalSort.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/math/graphAlgorithms/topologicalSort.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/InteractiveEdgeRouter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/InteractiveEdgeRouter.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/ShapeObstacleCalculator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/ShapeObstacleCalculator.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/rectilinear/PointComparer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/rectilinear/PointComparer.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/rectilinear/SparseVisibiltyGraphGenerator.spec.ts: -------------------------------------------------------------------------------- 1 | test('generate', () => { 2 | expect(1).toBe(1) 3 | }) 4 | -------------------------------------------------------------------------------- /modules/core/test/routing/rectilinear/eventQueue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/rectilinear/eventQueue.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/rectilinear/obstacle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/rectilinear/obstacle.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/shape.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/shape.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/spline/bundling/bundleRouter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/spline/bundling/bundleRouter.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/splineRouter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/splineRouter.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/visibility/Bimodal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/visibility/Bimodal.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/visibility/Polygon.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/visibility/Polygon.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/visibility/UnimodalSequence.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/visibility/UnimodalSequence.spec.ts -------------------------------------------------------------------------------- /modules/core/test/routing/visibility/VisibilityGraph.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/routing/visibility/VisibilityGraph.spec.ts -------------------------------------------------------------------------------- /modules/core/test/structs/BinaryHeapPriorityQueue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/structs/BinaryHeapPriorityQueue.spec.ts -------------------------------------------------------------------------------- /modules/core/test/structs/BinaryHeapWithComparer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/structs/BinaryHeapWithComparer.spec.ts -------------------------------------------------------------------------------- /modules/core/test/structs/BinaryHeapWithComparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/structs/BinaryHeapWithComparer.ts -------------------------------------------------------------------------------- /modules/core/test/structs/basicGraph.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/structs/basicGraph.spec.ts -------------------------------------------------------------------------------- /modules/core/test/structs/basicGraphOnEdges.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/structs/basicGraphOnEdges.spec.ts -------------------------------------------------------------------------------- /modules/core/test/structs/entity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/structs/entity.spec.ts -------------------------------------------------------------------------------- /modules/core/test/structs/graph.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/structs/graph.spec.ts -------------------------------------------------------------------------------- /modules/core/test/structs/rbTree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/structs/rbTree.spec.ts -------------------------------------------------------------------------------- /modules/core/test/utils/IntPairMap.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/utils/IntPairMap.spec.ts -------------------------------------------------------------------------------- /modules/core/test/utils/IntPairSet.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/utils/IntPairSet.spec.ts -------------------------------------------------------------------------------- /modules/core/test/utils/PointMap.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/utils/PointMap.spec.ts -------------------------------------------------------------------------------- /modules/core/test/utils/svgDebugWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/utils/svgDebugWriter.ts -------------------------------------------------------------------------------- /modules/core/test/utils/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/utils/testUtils.ts -------------------------------------------------------------------------------- /modules/core/test/utils/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/test/utils/utils.spec.ts -------------------------------------------------------------------------------- /modules/core/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/core/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/drawing/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/bundle.ts -------------------------------------------------------------------------------- /modules/drawing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/package.json -------------------------------------------------------------------------------- /modules/drawing/src/arrowTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/arrowTypeEnum.ts -------------------------------------------------------------------------------- /modules/drawing/src/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/color.ts -------------------------------------------------------------------------------- /modules/drawing/src/dirTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/dirTypeEnum.ts -------------------------------------------------------------------------------- /modules/drawing/src/drawingEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/drawingEdge.ts -------------------------------------------------------------------------------- /modules/drawing/src/drawingGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/drawingGraph.ts -------------------------------------------------------------------------------- /modules/drawing/src/drawingNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/drawingNode.ts -------------------------------------------------------------------------------- /modules/drawing/src/drawingObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/drawingObject.ts -------------------------------------------------------------------------------- /modules/drawing/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/index.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/bumperPusher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/bumperPusher.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/geomGraphEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/geomGraphEditor.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/iViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/iViewer.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/iViewerEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/iViewerEdge.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/iViewerGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/iViewerGraph.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/iViewerNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/iViewerNode.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/iViewerObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/iViewerObject.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/incrementalDragger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/incrementalDragger.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/labelFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/labelFixture.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/layoutEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/layoutEditor.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/modifierKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/modifierKeys.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/polylineCornerType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/polylineCornerType.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/undoRedoAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/undoRedoAction.ts -------------------------------------------------------------------------------- /modules/drawing/src/layoutEditing/undoRedoActionsList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/layoutEditing/undoRedoActionsList.ts -------------------------------------------------------------------------------- /modules/drawing/src/orderingEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/orderingEnum.ts -------------------------------------------------------------------------------- /modules/drawing/src/rankEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/rankEnum.ts -------------------------------------------------------------------------------- /modules/drawing/src/shapeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/shapeEnum.ts -------------------------------------------------------------------------------- /modules/drawing/src/styleEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/styleEnum.ts -------------------------------------------------------------------------------- /modules/drawing/src/textMeasurerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/src/textMeasurerOptions.ts -------------------------------------------------------------------------------- /modules/drawing/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/drawing/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/parser/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/parser/bundle.ts -------------------------------------------------------------------------------- /modules/parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/parser/package.json -------------------------------------------------------------------------------- /modules/parser/src/dotparser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/parser/src/dotparser.ts -------------------------------------------------------------------------------- /modules/parser/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/parser/src/index.ts -------------------------------------------------------------------------------- /modules/parser/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/parser/src/utils.ts -------------------------------------------------------------------------------- /modules/parser/test/dotparser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/parser/test/dotparser.spec.ts -------------------------------------------------------------------------------- /modules/parser/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/parser/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/renderer-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-common/package.json -------------------------------------------------------------------------------- /modules/renderer-common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-common/src/index.ts -------------------------------------------------------------------------------- /modules/renderer-common/src/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-common/src/layout.ts -------------------------------------------------------------------------------- /modules/renderer-common/src/text-measurer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-common/src/text-measurer.ts -------------------------------------------------------------------------------- /modules/renderer-common/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-common/src/utils.ts -------------------------------------------------------------------------------- /modules/renderer-common/src/workers/layoutWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-common/src/workers/layoutWorker.ts -------------------------------------------------------------------------------- /modules/renderer-common/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-common/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/renderer-svg/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-svg/bundle.ts -------------------------------------------------------------------------------- /modules/renderer-svg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-svg/package.json -------------------------------------------------------------------------------- /modules/renderer-svg/src/event-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-svg/src/event-source.ts -------------------------------------------------------------------------------- /modules/renderer-svg/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-svg/src/index.ts -------------------------------------------------------------------------------- /modules/renderer-svg/src/rendererSvg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-svg/src/rendererSvg.ts -------------------------------------------------------------------------------- /modules/renderer-svg/src/svgCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-svg/src/svgCreator.ts -------------------------------------------------------------------------------- /modules/renderer-svg/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-svg/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/renderer-svg/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-svg/worker.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/bundle.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/graph-style-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/graph-style-schema.json -------------------------------------------------------------------------------- /modules/renderer-webgl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/package.json -------------------------------------------------------------------------------- /modules/renderer-webgl/src/controls/search-control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/controls/search-control.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/event-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/event-source.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/index.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/layers/arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/layers/arrows.svg -------------------------------------------------------------------------------- /modules/renderer-webgl/src/layers/arrows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/layers/arrows.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/layers/curve-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/layers/curve-layer.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/layers/geometry-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/layers/geometry-layer.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/layers/get-edge-layers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/layers/get-edge-layers.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/layers/get-node-layers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/layers/get-node-layers.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/layers/graph-highlighter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/layers/graph-highlighter.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/layers/graph-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/layers/graph-layer.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/layers/graph-style-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/layers/graph-style-extension.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/renderer.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/styles/graph-style-evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/styles/graph-style-evaluator.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/src/styles/graph-style-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/src/styles/graph-style-spec.ts -------------------------------------------------------------------------------- /modules/renderer-webgl/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/tsconfig.prod.json -------------------------------------------------------------------------------- /modules/renderer-webgl/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/modules/renderer-webgl/worker.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/tsconfig.prod.json -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/.prettierrc -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/docs/api.md -------------------------------------------------------------------------------- /website/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/docs/configuration.md -------------------------------------------------------------------------------- /website/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/docs/getting-started.md -------------------------------------------------------------------------------- /website/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/docs/intro.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/sidebars.js -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/src/pages/index.module.css -------------------------------------------------------------------------------- /website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/src/pages/index.tsx -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/editors/msagl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/editors/msagl.html -------------------------------------------------------------------------------- /website/static/images/awilliams_blackbg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/awilliams_blackbg.svg -------------------------------------------------------------------------------- /website/static/images/awilliams_whitebg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/awilliams_whitebg.svg -------------------------------------------------------------------------------- /website/static/images/bundleRouting.dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/bundleRouting.dark.svg -------------------------------------------------------------------------------- /website/static/images/bundleRouting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/bundleRouting.svg -------------------------------------------------------------------------------- /website/static/images/mdsShowAPI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/mdsShowAPI.svg -------------------------------------------------------------------------------- /website/static/images/mdsShowAPI_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/mdsShowAPI_dark.svg -------------------------------------------------------------------------------- /website/static/images/rectRouting.dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/rectRouting.dark.svg -------------------------------------------------------------------------------- /website/static/images/rectRouting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/rectRouting.svg -------------------------------------------------------------------------------- /website/static/images/showAPI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/showAPI.svg -------------------------------------------------------------------------------- /website/static/images/showAPI_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/showAPI_dark.svg -------------------------------------------------------------------------------- /website/static/images/splineRouting.dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/splineRouting.dark.svg -------------------------------------------------------------------------------- /website/static/images/splineRouting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/images/splineRouting.svg -------------------------------------------------------------------------------- /website/static/img/gear-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/img/gear-svgrepo-com.svg -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /website/static/img/undraw_image_viewer_re_7ejc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/img/undraw_image_viewer_re_7ejc.svg -------------------------------------------------------------------------------- /website/static/img/undraw_start_building_re_xani.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/img/undraw_start_building_re_xani.svg -------------------------------------------------------------------------------- /website/static/layoutedit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/layoutedit.mp4 -------------------------------------------------------------------------------- /website/static/renderer-svg-no-parser/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/renderer-svg-no-parser/app.js -------------------------------------------------------------------------------- /website/static/renderer-svg-no-parser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/renderer-svg-no-parser/index.html -------------------------------------------------------------------------------- /website/static/renderer-svg/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/renderer-svg/app.js -------------------------------------------------------------------------------- /website/static/renderer-svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/renderer-svg/index.html -------------------------------------------------------------------------------- /website/static/renderer-webgl/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/renderer-webgl/app.js -------------------------------------------------------------------------------- /website/static/renderer-webgl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/renderer-webgl/index.html -------------------------------------------------------------------------------- /website/static/renderer-webgl/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/renderer-webgl/spinner.gif -------------------------------------------------------------------------------- /website/static/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/static/video.png -------------------------------------------------------------------------------- /website/tools/msagl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/tools/msagl.html -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/msagljs/HEAD/yarn.lock --------------------------------------------------------------------------------