We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
path.addArc(200, 200, 400, 400, -225, 225); path.arcTo(400, 200, 600, 400, -180, 225, false); path.lineTo(400, 542) 这段代码在我的理解里绘制出来的心形应该是少了左下直线部分的,但是为什么实际是一个完整的心形呢
The text was updated successfully, but these errors were encountered:
你把你的paint设置成:paint.style = Paint.Style.STROKE看看,这样是不是少了左下直线部分,再用path.colse
paint.style = Paint.Style.STROKE
path.colse
Sorry, something went wrong.
No branches or pull requests
path.addArc(200, 200, 400, 400, -225, 225);
path.arcTo(400, 200, 600, 400, -180, 225, false);
path.lineTo(400, 542)
这段代码在我的理解里绘制出来的心形应该是少了左下直线部分的,但是为什么实际是一个完整的心形呢
The text was updated successfully, but these errors were encountered: