function Translate (translation : Vector3, relativeTo : Space = Space.Self) : void Description描述 Moves the transform in the direction and distance of translation. 移动transform在translation的方向和距离. 简单的说,向某方向移动物体多少距离. If relativeTo is left out or set to S…
rotate()和translate() 1.看到这个题目的时候,有人会觉得这不就是一个对画布的旋转和平移的嘛,但是其中的细节的地方还是需要深究一下的. 例如:有个需求将TextView的文字竖直显示. 首先想到的方法就是将画布旋转90度,代码如下: public class RotateTextView extends TextView { public RotateTextView(Context context) { super(context); } public RotateTextV…