UNPKG

sigma

Version:

A JavaScript library dedicated to graph drawing.

15 lines (12 loc) 468 B
/** * Sigma.js WebGL Renderer Edge Arrow Program * =========================================== * * Compound program rendering edges as an arrow from the source to the target. * @module */ import { createEdgeCompoundProgram } from "./common/edge"; import EdgeArrowHeadProgram from "./edge.arrowHead"; import EdgeClampedProgram from "./edge.clamped"; const program = createEdgeCompoundProgram([EdgeClampedProgram, EdgeArrowHeadProgram]); export default program;