Module
DataViz.Layout.Hierarchy.EdgeBundle.BundleCurve
- Package
- purescript-hylograph-layout
- Repository
- afcondon/purescript-hylograph-layout
DataViz.Layout.Hierarchy.EdgeBundle.BundleCurve
Bundle curve generator for hierarchical edge bundling. Implements Danny Holten's algorithm with adjustable beta (tension) parameter.
The bundle curve draws a smooth B-spline through a path of ancestor nodes:
- beta = 0: straight line from source to target
- beta = 1: curve goes through all ancestor nodes
- beta = 0.85: D3's default, good balance of bundling and readability
#bundlePath Source
bundlePath :: Number -> Array BundlePoint -> StringGenerate SVG path for a bundle curve given points Uses quadratic Bezier spline approximation with bundle tension
The beta parameter controls tension:
- beta = 0: control points are not adjusted (straight-ish curve)
- beta = 1: control points follow the path exactly (maximum bundling)
#BundlePoint Source
type BundlePoint = { x :: Number, y :: Number }A point on the bundle path
- Modules
- DataViz.
Layout. Adjacency - DataViz.
Layout. Adjacency. Layout - DataViz.
Layout. Adjacency. Types - DataViz.
Layout. Chord - DataViz.
Layout. Chord. Layout - DataViz.
Layout. Chord. Types - DataViz.
Layout. Hierarchy. Cluster - DataViz.
Layout. Hierarchy. Core - DataViz.
Layout. Hierarchy. EdgeBundle - DataViz.
Layout. Hierarchy. EdgeBundle. Bilink - DataViz.
Layout. Hierarchy. EdgeBundle. BundleCurve - DataViz.
Layout. Hierarchy. EdgeBundle. Hierarchy - DataViz.
Layout. Hierarchy. EdgeBundle. RadialCluster - DataViz.
Layout. Hierarchy. EdgeBundle. Types - DataViz.
Layout. Hierarchy. Link - DataViz.
Layout. Hierarchy. Pack - DataViz.
Layout. Hierarchy. Partition - DataViz.
Layout. Hierarchy. Tree - DataViz.
Layout. Hierarchy. TreeStyle - DataViz.
Layout. Hierarchy. Treemap - DataViz.
Layout. Hierarchy. Types - DataViz.
Layout. Pattern - DataViz.
Layout. Pattern. Types - DataViz.
Layout. Sankey. CSV - DataViz.
Layout. Sankey. Compute - DataViz.
Layout. Sankey. ComputeWithSteps - DataViz.
Layout. Sankey. Path - DataViz.
Layout. Sankey. Types - DataViz.
Layout. StateMachine - DataViz.
Layout. StateMachine. Layout - DataViz.
Layout. StateMachine. Path - DataViz.
Layout. StateMachine. Types