前言
在写Custom Layout的demo时,用到了CATransform3D的m34参数,不务正业的想探究下这个矩阵到底为什么能影响到图形的透视旋转等等变换,所以通过本篇文章总结一下收获,供以后参考
目录
- 简单实现三维立方体
- CATransform3D&CGAffineTransform使用介绍
- 原理探究及理解
简单实现三维立方体
实现这个蛮简单的,只需要合理的调整旋转角度和平移,再加上一个定时器,完美(显然这个效果没什么卵用,但是笔者这只鶸来说,刚蹦出来的时候还是蛮开心的)
实现步骤 : 1.定义一个Basic View -> 2.调整并添加立方体的六个面 3.定时器调整Basic View的layer旋转
特别注意:旋转时,我们需要同时作用于6个子layer,所以请留意self.animateCube.layer.sublayerTransform = transform
中使用的是sublayerTransform
而非transform
1 |
|
CATransform3D&CGAffineTransform使用介绍
CGAffineTransform
CGAffineTransform
An affine transformation matrix for use in drawing 2D graphics
用于绘制2D图形的仿射变换矩阵
以上为官方文档定义,那么什么是仿射变换,看看这里数学咖们的解释就能大概理解了→如何通俗地讲解「仿射变换」这个概念?
CGAffineTransformMake
返回直接控制每一个参数的仿射变换矩阵1
CGAffineTransform CGAffineTransformMake(CGFloat a, CGFloat b, CGFloat c, CGFloat d, CGFloat tx, CGFloat ty);
CGAffineTransformScale
返回通过缩放现有仿射变换构造的仿射变换矩阵,sx
/sy
即为x方向
和y方向
的缩放比例1
CGAffineTransform CGAffineTransformScale(CGAffineTransform t, CGFloat sx, CGFloat sy);
CGAffineTransformRotate
返回通过旋转现有仿射变换构造的仿射变换矩阵,angle
为旋转弧度1
CGAffineTransform CGAffineTransformRotate(CGAffineTransform t, CGFloat angle);
CGAffineTransformInvert
返回通过反转现有仿射变换构造的仿射变换矩阵。1
CGAffineTransform CGAffineTransformInvert(CGAffineTransform t);
CGAffineTransformTranslate
返回实现平移的仿射变换矩阵。tx
/ty
为偏移量1
CGAffineTransform CGAffineTransformTranslate(CGAffineTransform t, CGFloat tx, CGFloat ty);
CGAffineTransformConcat
返回通过组合两个现有仿射变换构造的仿射变换矩阵。本质就是两个矩阵的乘法,上述平移、旋转、缩放的操作,如配图所示,都是可以通过点的齐次坐标与仿射变换矩阵的乘积获得,原理笔者会在第三部分解释1
CGAffineTransform CGAffineTransformConcat(CGAffineTransform t1, CGAffineTransform t2);
- 几个特殊的仿射变换矩阵
CGAffineTransformMakeScale
/CGAffineTransformMakeRotation
/CGAffineTransformMakeTranslation
都是在原视图初始坐标的基础上变化,所以并不会累加效果,相比上述Api它少了基础仿射矩阵参数CGAffineTransform t
1 | // scale |
CGAffineTransformIdentity
即单位矩阵如下图所示,他并不会对图形造成任何影响,通常用来恢复初始状态
我们要想将文字视图翻转该怎么做呢?
很简单,只需要将CGAffineTransformMakeScale
中的参数设置为-1即可。是不是很有趣
1 | label.transform = CGAffineTransformMakeScale(-1, -1); |
CATransform3D
CATransform3D
Defines the standard transform matrix used throughout Core Animation.
定义核心动画中使用的标准变换矩阵
CATransform
同样定义为结构体,代表了三维图形4x4的变换矩阵。网上有几篇文章,对每个参数功能都进行了标注,但是这样并不十分严谨。因为左上3x3的矩阵区域,各个参数需要相互作用才能达到理想的准确状态,并不单纯的是某个值负责某种准确的三维图形变换。笔者将在本文的第三部分原理探究及理解中具体解释,感(hen)兴(wu)趣(liao)的同学可以往下看看。
因为只是从2D变换变成3D变换,而且4x4矩阵本身就是3x3矩阵的拓展,原理是一样的,所以有很多相似相通的地方。
CATransform3DScale
返回通过缩放现有变换构造的变换矩阵,sx
/sy
/sz
即为x方向
、y方向
和z方向
的缩放比例1
2CATransform3D CATransform3DScale (CATransform3D t, CGFloat sx,
CGFloat sy, CGFloat sz)CATransform3DRotate
返回通过旋转现有变换构造的变换矩阵,angle
代表弧度,x
,y
,z
代表各个轴上旋转的弧度倍数1
2CATransform3D CATransform3DRotate (CATransform3D t, CGFloat angle,
CGFloat x, CGFloat y, CGFloat z)CATransform3DInvert
返回反转后的变换矩阵1
CATransform3D CATransform3DInvert (CATransform3D t)
CATransform3DTranslate
返回实现x
/y
/z
轴上平移相应距离的变换矩阵1
2CATransform3D CATransform3DTranslate (CATransform3D t, CGFloat tx,
CGFloat ty, CGFloat tz)CATransform3DConcat
返回同时作用两种变换矩阵的矩阵1
CATransform3D CATransform3DConcat (CATransform3D a, CATransform3D b)
- 几个特殊的变换矩阵
CATransform3DMakeScale
/CATransform3DMakeRotation
/CATransform3DMakeTranslation
同样是作用于原始视图的变换矩阵
1 | /* Returns a transform that translates by '(tx, ty, tz)': |
CATransform3DIdentity
[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1]
,人畜无害矩阵,通常用于恢复初始状态
原理解释
CGAffineTransform
以下是苹果官方文档对于CGAffineTransform二维变换矩阵对图形影响的注解
CGAffineTransform官方文档注解
An affine transformation matrix is used to rotate, scale, translate, or skew the objects you draw in a graphics context. The CGAffineTransform
type provides functions for creating, concatenating, and applying affine transformations.
Affine transforms are represented by a 3 by 3 matrix:
Because the third column is always (0,0,1), the CGAffineTransform
data structure contains values for only the first two columns.
Conceptually, an affine transform multiplies a row vector representing each point (x,y) in your drawing by this matrix, producing a vector that represents the corresponding point (x’,y’):
Given the 3 by 3 matrix, the following equations are used to transform a point (x, y) in one coordinate system into a resultant point (x’,y’) in another coordinate system.
看到这里,线代大神一定会嘴角上扬了,所以如果以下内容有任何理解或书写错误,请您务必留言给笔者鶸渣评论勘误打脸,千万不要高抬贵手。
二维的变换都可以看作是坐标的齐次坐标同[a b 0; c d 0; tx ty 1]的乘法运算
矩阵的乘法规则:第m行与第n行交叉位置的值,等于第一个矩阵第m行与第二个矩阵第n列对应位置的乘积之和。依据这个规则,再看下图,是不是感觉豁然开朗
知道了原理后,我们继续探究translate
/scale
/rotate
到底“背地里”干了些什么
上文中我们提到了,单独对结构体中某个的参数(Translate平移的参数当然不会出错,问题集中在对于线性变化区域的标注,即CGAffineTransform左上2x2区域、CATransform3D左上3x3区域)进行功能注释是不够严谨的。
为了证明这一观点,笔者绘制了CGAffineTransformRotate
仿射矩阵的推导过程图(这一结论在CATransform3DRotate矩阵中,同样适用,证明具体参数标注的不严谨)
- 相关推导用到的转换公式
1
2
3
4sin(A+B) = sinAcosB + cosAsinB
sin(A-B) = sinAcosB - cosAsinB
cos(A+B) = cosAcosB - sinAsinB
cos(A-B) = cosAcosB + sinAsinB
下面给出相对简单的CGAffineTransformTranslate
和CGAffineTransformScale
的矩阵的简单推导
细心的同学可能会发现,系统Api修改的都是矩阵的前两列参数。那么调整第三列,会有什么样的效果?
第三列参数,直接作用到齐次坐标的n+1维的参数上,它同普通坐标的转换关系以我们一直讨论的二维为例,如下图。为保证x = x',y = y'
,所以默认转换后,齐次坐标的d = 1
,如果第三列前两个参数均为0,那么修改右下位置的参数,可以直接控制图形的缩放。前两个参数则是随着图形中点的x、y值的变化改变对于齐次坐标中d
值得影响。
不过苹果并没有给我们提供这三个参数,而是选择在二维变换时把这一列去掉了-。- 可能觉得意义不大吧。但是,在CATransform3D中,这一列得到了保留,我们熟悉的m34,正是受z轴影响的透视关键参数,相信看到这里的你,应该已经能够理解为什么改变m34能够影响屏幕坐标中的透视关系了。
CATransform3D
3D矩阵变换,其实就是2D矩阵变换的拓展,相应的3x3矩阵变成CATransform3D代表的4x4矩阵
经过对于CGAffineTransform的学习,这里我们就不再推导常用的3D Api对应的变换了,直接贴上结果图
变换矩阵根据功能划分为四个区域,这里不做T1、T3区域的单独标注,观点在上文中已经提出,不再赘述
投影变换
目前大部分电子设备的图形显示,都是只能用二维图形表示三维物体,因此三维物体就要靠投影来降低位数得到二维平面图形,3D到2D转换的过程,称为投影变换
m34为什么能改变透视关系:
m34*影响到了T4区域的s值,s值会对投影的图形在z轴方向产生线性影响,为什么通常会用1/d的负值,因为用户特殊的观察视角,决定了感官上近大远小的特性,同时iOS中的坐标系,是左手坐标系,远离我们的方向,是z轴的负方向,所以越深入屏幕,图像中点的齐次坐标中的d就越大,屏幕上的投影就越小
旋转正方向的确定:左手坐标系适用于左手定律(反之亦然),握住指定轴,拇指指向该轴正方向,四指指向方向即为正方向