亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android使用貝塞爾曲線畫心形

 更新時(shí)間:2022年06月29日 15:07:52   作者:「已注銷」  
這篇文章主要為大家詳細(xì)介紹了Android使用貝塞爾曲線畫心形,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Android使用貝塞爾曲線畫心形的具體代碼,供大家參考,具體內(nèi)容如下

一開始我只是想畫個(gè)圓,可畫著畫著就成了心形,那就將錯(cuò)就錯(cuò)

1. 創(chuàng)建一個(gè)Activity

RelativeLayout container = findViewById(R.id.download_container);

? ? DisplayMetrics metrics = new DisplayMetrics();
? ? getWindowManager().getDefaultDisplay().getMetrics(metrics);
? ? deviceWidth = metrics.widthPixels;
? ? deviceHeight = metrics.heightPixels;

? ? Circle circle = new Circle(this, deviceWidth / 2, deviceHeight / 2, deviceWidth / 8);
? ? Line line = new Line(this, deviceWidth / 2, deviceHeight / 2, deviceWidth / 8);
? ? container.addView(line);

2. 創(chuàng)建一個(gè)自定義的View

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.PointF;
import android.view.View;

public class Line extends View {

? ? private Paint mPaint;
? ? private PointF startPointF;
? ? private PointF endPointF;
? ? private PointF controlPointF1, controlPointF2;

? ? private PointF startPointF2;
? ? private PointF endPointF2;
? ? private PointF controlPointF3, controlPointF4;

? ? public Line(Context context, float x, float y, float radius) {
? ? ? ? super(context);
? ? ? ? double d = (2 * Math.sqrt(2) - 1);
? ? ? ? this.startPointF = new PointF(x, y - radius);
? ? ? ? this.endPointF = new PointF(x, y + radius / 10);
? ? ? ? this.controlPointF1 = new PointF(x, (float) (y - d * radius));
? ? ? ? this.controlPointF2 = new PointF((float) (x + d * radius), (float) (y - d * radius));

? ? ? ? this.startPointF2 = new PointF(x, y - radius);
? ? ? ? this.endPointF2 = new PointF(x, y + radius / 10);
? ? ? ? this.controlPointF3 = new PointF(x, (float) (y - d * radius));
? ? ? ? this.controlPointF4 = new PointF((float) (x - d * radius), (float) (y - d * radius));

? ? ? ? this.mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
? ? ? ? this.mPaint.setColor(Color.WHITE);
? ? }

? ? @Override
? ? protected void onDraw(Canvas canvas) {
? ? ? ? super.onDraw(canvas);

? ? ? ? //繪制貝塞爾曲線
? ? ? ? Path path = new Path();

? ? ? ? path.moveTo(startPointF.x, startPointF.y);
? ? ? ? path.cubicTo(controlPointF1.x, controlPointF1.y, controlPointF2.x, controlPointF2.y, endPointF.x, endPointF.y);
? ? ? ? canvas.drawPath(path, mPaint);

? ? ? ? path.moveTo(startPointF2.x, startPointF2.y);
? ? ? ? path.cubicTo(controlPointF3.x, controlPointF3.y, controlPointF4.x, controlPointF4.y, endPointF2.x, endPointF2.y);
? ? ? ? canvas.drawPath(path, mPaint);
? ? }
}

運(yùn)行效果

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論