Android贝塞尔曲线初步学习第三课 Android实现添加至购物车的运动轨迹
程序员文章站
2023-12-10 11:31:52
不知上一节高仿qq未读消息气泡大家还喜欢么,今天继续练习贝赛尔曲线,这一节我们通过贝赛尔曲线和属性动画估值器实现添加至购物车的运动轨迹,效果如下:
1、新建自定义vi...
不知上一节高仿qq未读消息气泡大家还喜欢么,今天继续练习贝赛尔曲线,这一节我们通过贝赛尔曲线和属性动画估值器实现添加至购物车的运动轨迹,效果如下:
1、新建自定义view,重写构造方法,初始化paint、path;
2、确定起始点、终止点、控制点坐标,这里我们直接固定:
@override protected void onsizechanged(int w, int h, int oldw, int oldh) { super.onsizechanged(w, h, oldw, oldh); mstartx = 100; mstarty = 100; mendx = w - 100; mendy = h - 100; mcontrolx = w - 100; mcontroly = 100; }
3、画起止点小球和贝赛尔曲线路径:
@override protected void ondraw(canvas canvas) { super.ondraw(canvas); canvas.drawcircle(mstartx, mstarty, 24, mcirclepaint); canvas.drawcircle(mendx, mendy, 24, mcirclepaint); mpath.reset(); mpath.moveto(mstartx, mstarty); mpath.quadto(mcontrolx, mcontroly, mendx, mendy); canvas.drawpath(mpath, mpathpaint); }
这样基本的东西就完成了。
4、那么该怎样使一个小球随着贝赛尔曲线的路径轨迹运动呢,那就需要得到运动到当前的点在贝赛尔曲线上的坐标,使用如下工具类:
/** * 计算贝赛尔曲线坐标的工具类 */ public class bezierutil { /** * b(t) = (1 - t)^2 * p0 + 2t * (1 - t) * p1 + t^2 * p2, t ∈ [0,1] * * @param t 曲线长度比例 * @param p0 起始点 * @param p1 控制点 * @param p2 终止点 * @return t对应的点 */ public static pointf calculatebezierpointforquadratic(float t, pointf p0, pointf p1, pointf p2) { pointf point = new pointf(); float temp = 1 - t; point.x = temp * temp * p0.x + 2 * t * temp * p1.x + t * t * p2.x; point.y = temp * temp * p0.y + 2 * t * temp * p1.y + t * t * p2.y; return point; } /** * b(t) = p0 * (1-t)^3 + 3 * p1 * t * (1-t)^2 + 3 * p2 * t^2 * (1-t) + p3 * t^3, t ∈ [0,1] * * @param t 曲线长度比例 * @param p0 起始点 * @param p1 控制点1 * @param p2 控制点2 * @param p3 终止点 * @return t对应的点 */ public static pointf calculatebezierpointforcubic(float t, pointf p0, pointf p1, pointf p2, pointf p3) { pointf point = new pointf(); float temp = 1 - t; point.x = p0.x * temp * temp * temp + 3 * p1.x * t * temp * temp + 3 * p2.x * t * t * temp + p3.x * t * t * t; point.y = p0.y * temp * temp * temp + 3 * p1.y * t * temp * temp + 3 * p2.y * t * t * temp + p3.y * t * t * t; return point; } }
只需要传入对应的参数即可获得到当前点在贝赛尔曲线上的坐标。其中曲线长度比例t 以及起始点、终止点都可以在属性动画估值器evaluator中获得:
/** * 贝赛尔曲线估值器 */ public class bezierevaluator implements typeevaluator<pointf> { /* 控制点坐标 */ private pointf mcontrolpoint; public bezierevaluator(pointf controlpoint) { mcontrolpoint = controlpoint; } @override public pointf evaluate(float v, pointf pointf, pointf t1) { return bezierutil.calculatebezierpointforquadratic(v, pointf, mcontrolpoint, t1); } }
注:point与pointf的区别:
point使用的是int类型来存储x、y坐标,而pointf使用的是float类型。
5、设置点击监听setonclicklistner(this),重写onclick方法:
@override public void onclick(view view) { bezierevaluator evaluator = new bezierevaluator(new pointf(mcontrolx, mcontroly)); pointf startpoint = new pointf(mstartx, mstarty); pointf endpoint = new pointf(mendx, mendy); valueanimator anim = valueanimator.ofobject(evaluator, startpoint, endpoint); anim.setduration(1000); anim.addupdatelistener(new valueanimator.animatorupdatelistener() { @override public void onanimationupdate(valueanimator valueanimator) { pointf curpoint = (pointf) valueanimator.getanimatedvalue(); mcurx = (int) curpoint.x; mcury = (int) curpoint.y; invalidate(); } }); anim.start(); }
使用估值器bezierevaluator的对象,在属性动画更新监听中获取到该当前所在位置,并重绘:
canvas.drawcircle(mcurx, mcury, 24, mcirclepaint);
即可实现一种类似于添加至购物车的运动轨迹效果。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。