Quadratic 二次贝塞尔曲线
阅读时间约 2 分钟
概述
二次贝塞尔曲线是一种平滑的曲线,其形状由起点、终点和一个控制点决定。
使用场景:
适用于中等复杂度的图,如关系图、网络图。
当需要平滑连接节点且计算资源有限时使用。
在线体验
createGraph({data: {nodes: [{ id: 'node1' }, { id: 'node2' }],edges: [{ id: 'edge1', source: 'node1', target: 'node2', text: 'quadratic' }],},node: {style: {fill: '#f8f8f8',stroke: '#8b9baf',lineWidth: 1,},},edge: {type: 'quadratic',style: {stroke: '#7e3feb',lineWidth: 2,labelText: (d) => d.text,labelBackground: true,labelBackgroundFill: '#f9f0ff',labelBackgroundOpacity: 1,labelBackgroundLineWidth: 2,labelBackgroundStroke: '#7e3feb',labelPadding: [1, 10],labelBackgroundRadius: 4,},},behaviors: ['drag-canvas', 'drag-element'],layout: { type: 'grid', cols: 2 },plugins: [{ type: 'grid-line', size: 30 }],},{ width: 600, height: 300 },(gui, graph) => {gui.add({ type: 'quadratic' }, 'type').disable();const options = {curveOffset: 30,curvePosition: 0.5,};const optionFolder = gui.addFolder('quadratic.style');optionFolder.add(options, 'curveOffset', 0, 100);optionFolder.add(options, 'curvePosition', 0, 1);optionFolder.onChange(({ property, value }) => {graph.updateEdgeData([{ id: 'edge1', style: { [property]: value } }]);graph.render();});},);
设置 edge.type
为 quadratic
以使用曲线。
样式配置
如果元素有其特定的属性,我们将在下面列出。对于所有的通用样式属性,见BaseEdge
属性 | 描述 | 类型 | 默认值 | 必选 |
---|---|---|---|---|
controlPoints | 控制点数组,用于定义曲线的形状。如果不指定,将会通过 curveOffset 和 curvePosition 来计算控制点 | Point | - | |
curvePosition | 控制点在两端点连线上的相对位置,范围为0-1 | number | 0.5 | |
curveOffset | 控制点距离两端点连线的距离,可理解为控制边的弯曲程度 | number | 30 |
Point
type Point = [number, number] | [number, number, number] | Float32Array;