我能夠繪製具有尖銳邊緣的矩形,現在我需要使尖銳邊緣變圓。帶圓角的繪製正方形
如何做到這一點?
這是我的代碼:
public void drawShape(Canvas canvas, Renderer renderer, float x, float y,
int seriesIndex, Paint paint) {
float halfShapeWidth = shape_width/2;
canvas.drawRect(x , y - halfShapeWidth, x + SHAPE_WIDTH, y + halfShapeWidth, paint);
}
如何通過傳遞相同的參數,使這個圓角的矩形?