2

キャンバスに楕円を描こうとしています。基本的に、4 つのベジエ曲線を組み合わせて楕円形にします。

楕円を描くことには成功しましたが、閉じる方法がわかりません。

コード:

//Paints for bazier curve
Paint bezierPaint = new Paint();
bezierPaint.setColor(Color.RED);
bezierPaint.setStyle(Paint.Style.STROKE);
bezierPaint.setStrokeCap(Paint.Cap.ROUND);
bezierPaint.setStrokeWidth(3.0f);
bezierPaint.setAntiAlias(true);

//Oval Path
Path ovalPath = new Path();

//Draw the first curve. from top point to right point
ovalPath.moveTo(160,0);
ovalPath.cubicTo(210, 0, 260, 100, 260, 150);

//Draw the second curve. from right point to bottom point   
ovalPath.moveTo(260, 150);
ovalPath.cubicTo(260, 200, 210, 300, 160, 300);

//Draw the thrid curve. from bottom point to left point         
ovalPath.moveTo(160, 300);
ovalPath.cubicTo(110, 300, 60, 200, 60, 150);

//Draw the fourth curve. from left point to top point           
ovalPath.moveTo(60, 150);
ovalPath.cubicTo(60, 100, 110, 0, 160, 0);

**//I expect this oval close correctly. But in actually, the fourth curve was closed. 
//Please see the image in attachment.How should I close this path as my expectation?**
ovalPath.close()

canvas.drawPath(ovalPath, bezierPaint);

ここに画像の説明を入力

4

2 に答える 2

2

楕円を描くには、次の関数を使用する方がはるかに簡単だと思います。

canvas.drawOval(ovalRect, paint);

ovalRect は、楕円が配置されるRectFオブジェクトです。

于 2014-01-18T16:08:04.763 に答える