Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java(Android)で曲線を色補正するには? 標準ライブラリ、特に OpenGL を使用する可能性はありますか? 誰かがどこから始めればよいか教えてもらえますか?
Android ドキュメント:AntiAliasing smooths out the edges of what is being drawn, but is has no impact on the interior of the shape...
AntiAliasing smooths out the edges of what is being drawn, but is has no impact on the interior of the shape...
Paint paint = new Paint(); paint.setAntiAlias(true); canvas.drawCircle(center_x, center_y, radius, paint);
この助けを願っています!