D3 v5.0 3D饼图(进化版)

先给个初代的传送门。
https://blog.csdn.net/m0_37777005/article/details/90693963

说明一下:
只提供3D饼图填充的算法(感谢highcharts大佬们开源,开箱即用)

使用:

/*
alpha 可以理解为旋转角度,具体可到highchart API文档查看
startAngle 经过d3.pie()数据处理后,每一个arc 的startAngle
endAngle 经过d3.pie()数据处理后,每一个arc 的endAngle
outerRadius 外半径
innerRadius 内半径
hh: 3D饼图的高
*/
 get3DArcPath(alpha, d.startAngle, d.endAngle, outerRadius, innerRadius, hh)
const PI = Math.PI;
const cos = Math.cos;
const sin = Math.sin;

const dFactor = (4 * (Math.sqrt(2) - 1) / 3) / (PI / 2);
function curveTo(cx: any, cy: any, rx: any, ry: any, start: any, end: any, dx: any, dy: any) {
   
  let result: any[] = [];
  const arcAngle = end - start;
  if ((end > start) && (end - start > Math.PI / 2 + 0.0001)) {
   
    result = result.concat(curveTo(cx, cy, rx, ry, start, start + (Math.PI / 2), dx, dy));
    result = result.concat(curveTo(cx, cy, rx, ry, start + (Math.PI / 2), end, dx, dy));
    return result;
  }
  if ((end < start) && (start - end > Math.PI / 2 + 0.0001)) {
   
    result = result.concat(curveTo(cx, cy, rx, ry, start, start - (Math.PI / 2), dx, dy));
    result = result.concat(curveTo(cx, cy, rx, ry, start - (Math.PI / 2), end, dx, dy));
    return result;
  }
  return [
    'C',
    cx + (rx * Math.cos(start)) -
    ((rx * dFactor * arcAngle) * Math
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值