码迷,mamicode.com
首页 > 其他好文 > 详细

canvas绘制圆弧

时间:2019-02-08 23:21:46      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:cloc   radius   class   txt   lse   逆时针   start   tar   pat   

canvas绘制圆弧

  1. 方法

    anticlockwise为true表示逆时针,默认为顺时针
    角度都传的是弧度(弧度 = (Math.PI/180)*角度)
    arc(x, y, radius, startAngle, endAngle, anticlockwise) 
    arcTo(x1, y1, x2, y2, radius)
  2. 画实心圆弧

    const canvas = document.getElementById(‘canvas‘);
    const ctx = canvas.getContext(‘2d‘);
    
    ctx.beginPath();
    ctx.arc(200, 200, 50, 0, (Math.PI/180)*90, false);
    ctx.fill();
  3. 画空心圆弧

    ctx.beginPath();
    ctx.arc(200, 200, 50, 0, (Math.PI/180)*90, true);
    ctx.stroke();
  4. 画两条交线的圆角

    ctx.beginPath();
    ctx.moveTo(200, 100);
    ctx.lineTo(200, 200);
    ctx.arcTo(200, 230, 230, 230, 30);
    ctx.lineTo(300, 230);
    ctx.stroke();

canvas绘制圆弧

标签:cloc   radius   class   txt   lse   逆时针   start   tar   pat   

原文地址:https://www.cnblogs.com/ye-hcj/p/10356780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!