- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何像这样在圆弧末端画一条线?
这是我当前用来绘制圆弧的代码
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(widthMeasureSpec, heightMeasureSpec);
canvasWidth = MeasureSpec.getSize(widthMeasureSpec);
canvasHeight = MeasureSpec.getSize(heightMeasureSpec);
padding = strokeWidth * 0.9f;
arcAngle = 360 * 0.8f;
rectF.set(padding, padding, canvasWidth - padding, canvasHeight - padding);
arcRadius = (canvasWidth - padding) / 2f;
arcBottomHeight = arcRadius * (float) (1 - Math.cos(angle / 180 * Math.PI));
}
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
float startAngle = 270 - arcAngle / 2f;
float finishedSweepAngle = progress / (float) getMax() * arcAngle;
float finishedStartAngle = startAngle;
canvas.drawArc(rectF, startAngle, arcAngle, false, unfinishedPaint);
canvas.drawArc(rectF, finishedStartAngle, finishedSweepAngle, false, finishedPaint);
}
这会在彼此之上绘制 2 条弧线,其中彩色弧线 (finishedPaint) 代表进度。
我想使用canvas.drawLine()在圆弧末端绘制线条,但不确定如何获取坐标来指定线条的起点和终点坐标。
最佳答案
使用三角函数。您知道圆弧的半径及其结束角度。 x 为radius*sin(endangle)+xcenter
,y 为radius*cos(endangle)+ycenter
。然后以与所在位置相同的角度画线。
关于java - 如何在圆弧的末端画一条线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55504464/
我想以 headless 模式(屏幕上根本没有 GUI)将 JPanel 绘制到 BufferedImage 中。 final JPanel panel = createPanel(); panel.
我是 Canvas 的新手,正在尝试创建看起来逼真的 float 粒子动画。 目前,我正在创建 400 个随机散布在 400x400 Canvas 上的粒子。 然后,在每个 requestAnimat
有没有办法在悬停时停止悬 float 画? :hover 这是一个显示动画的链接: https://codepen.io/youbiteme/pen/RprPrN 最佳答案 只需为您的 svg 悬停添
我想在谷歌地图上绘制覆盖图,其中除了特定点周围 1.5 公里半径以外的所有内容都被遮蔽了。为此,我尝试使用带有大量边框的圆圈,所以我会在边框中放置透明中心和覆盖颜色来实现这一点,但它无法渲染。
我正在尝试通过扩展类 UIView 来创建自定义 View ,该类可以在自定义 View 的中心显示一个圆圈。为了添加自定义绘图,我重写了 draw(_ rect: CGRect) 方法,如下所示。
我是一名优秀的程序员,十分优秀!