CoreGraphics.h

CGAffineTransform rotation = CGAffineTransformMakeRotation(M_PI_2);[xxx setTransform:rotation];呵呵就这么简单的两行代码就可以实现了!

顺便记录一些常量,以后用的着!

#define M_E         2.71828182845904523536028747135266250   e#define M_LOG2E     1.44269504088896340735992468100189214   log 2e#define M_LOG10E    0.434294481903251827651128918916605082  log 10e#define M_LN2       0.693147180559945309417232121458176568  log e2#define M_LN10      2.30258509299404568401799145468436421   log e10#define M_PI        3.14159265358979323846264338327950288   pi#define M_PI_2      1.57079632679489661923132169163975144   pi/2#define M_PI_4      0.785398163397448309615660845819875721  pi/4#define M_1_PI      0.318309886183790671537767526745028724  1/pi#define M_2_PI      0.636619772367581343075535053490057448  2/pi#define M_2_SQRTPI  1.12837916709551257389615890312154517   2/sqrt(pi)#define M_SQRT2     1.41421356237309504880168872420969808   sqrt(2)#define M_SQRT1_2   0.707106781186547524400844362104849039  1/sqrt(2)

from:http://donbe.blog.163.com/blog/static/138048021201061054243442/CGAffineTransformMakeTranslation(width, 0.0);是改变位置的,

CGAffineTransformRotate(transform, M_PI);是旋转的。

CGAffineTransformMakeRotation(-M_PI);也是旋转的

transform = CGAffineTransformScale(transform, -1.0, 1.0);是缩放的。

view.transform = CGAffineTransformIdentity;线性代数里面讲的矩阵变换,这个是恒等变换当 你改变过一个view.transform属性或者view.layer.transform的时候需要恢复默认状态的话,记得先把他们重置可以使用

view.transform = CGAffineTransformIdentity,

或者view.layer.transform = CATransform3DIdentity,

假设你一直不断的改变一个view.transform的属性,而每次改变之前没有重置的话,你会发现后来 的改变和你想要的发生变化了,不是你真正想要的结果

Quartz转换实现的原理:Quartz把绘图分成两个部分,

用户空间,即和设备无关,

设备空间,

用户空间和设备空间中间存在一个转换矩阵 : CTM

本章实质是讲解CTM

Quartz提供的3大功能

移动,旋转,缩放

演示如下,首先加载一张图片

void CGContextDrawImage (

CGContextRef c,

CGRect rect,

CGImageRef image

);

移动函数

CGContextTranslateCTM (myContext, 100, 50);

旋转函数

include <math.h>

static inline double radians (double degrees) {return degrees * M_PI/180;}

CGContextRotateCTM (myContext, radians(–45.));

缩放

CGContextScaleCTM (myContext, .5, .75);

翻转, 两种转换合成后的效果,先把图片移动到右上角,然后旋转180度

CGContextTranslateCTM (myContext, w,h);

CGContextRotateCTM (myContext, radians(-180.));

组合几个动作

CGContextTranslateCTM (myContext, w/4, 0);

CGContextScaleCTM (myContext, .25,  .5);

CGContextRotateCTM (myContext, radians ( 22.));

CGContextRotateCTM (myContext, radians ( 22.));

CGContextScaleCTM (myContext, .25,  .5);

CGContextTranslateCTM (myContext, w/4, 0);

上面是通过直接修改当前的ctm实现3大效果,下面是通过创建Affine Transforms,然后连接ctm实现同样的3种效果

这样做的好处是可以重用这个Affine Transforms

应用Affine Transforms 到ctm的函数

void CGContextConcatCTM (

CGContextRef c,

CGAffineTransform transform

);

Creating Affine Transforms

移动效果

CGAffineTransform CGAffineTransformMakeTranslation (

CGFloat tx,

CGFloat ty

);

CGAffineTransform CGAffineTransformTranslate (

CGAffineTransform t,

CGFloat tx,

CGFloat ty

);

旋转效果

CGAffineTransform CGAffineTransformMakeRotation (

CGFloat angle

);

CGAffineTransform CGAffineTransformRotate (

CGAffineTransform t,

CGFloat angle

);

缩放效果

CGAffineTransform CGAffineTransformMakeScale (

CGFloat sx,

CGFloat sy

);

CGAffineTransform CGAffineTransformScale (

CGAffineTransform t,

CGFloat sx,

CGFloat sy

);

反转效果

CGAffineTransform CGAffineTransformInvert (

CGAffineTransform t

);

只对局部产生效果

CGRect CGRectApplyAffineTransform (

CGRect rect,

CGAffineTransform t

);

判断两个AffineTrans是否相等

bool CGAffineTransformEqualToTransform (

CGAffineTransform t1,

CGAffineTransform t2

);

获得Affine Transform

CGAffineTransform CGContextGetUserSpaceToDeviceSpaceTransform (

CGContextRef c

);

下面的函数只起到查看的效果,比如看一下这个用户空间的点,转换到设备空间去坐标是多少

CGPoint CGContextConvertPointToDeviceSpace (

CGContextRef c,

CGPoint point

);

CGPoint CGContextConvertPointToUserSpace (

CGContextRef c,

CGPoint point

);

CGSize CGContextConvertSizeToDeviceSpace (

CGContextRef c,

CGSize size

);

CGSize CGContextConvertSizeToUserSpace (

CGContextRef c,

CGSize size

);

CGRect CGContextConvertRectToDeviceSpace (

CGContextRef c,

CGRect rect

);

CGRect CGContextConvertRectToUserSpace (

CGContextRef c,

CGRect rect

);

CTM真正的数学行为

这个转换矩阵其实是一个 3x3的 举证

如下图

下面举例说明几个转换运算的数学实现

x y 是原先点的坐标

下面是从用户坐标转换到设备坐标的计算公式

下面是一个identity matrix,就是输入什么坐标,出来什么坐标,没有转换

最终的计算结果是 x=x,y=y,

可以用函数判断这个矩阵是不是一个 identity matrix

bool CGAffineTransformIsIdentity (

CGAffineTransform t

);

参考:http://developer.apple.com/library/ios/#documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_affine/dq_affine.html

- (void)willAnimateFirstHalfOfRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation   duration:(NSTimeInterval)duration

{

if (toInterfaceOrientation == UIInterfaceOrientationPortrait)

{

b=YES;

self.view=mainvv;

self.view.transform = CGAffineTransformIdentity;

self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(0));

self.view.bounds = CGRectMake(0.0, 0.0, 768.0, 1004.0);

}

else if (toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft)

{

b=NO;

self.view = self.vv;

self.view.transform = CGAffineTransformIdentity;

self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(-90));

self.view.bounds = CGRectMake(0.0, 0.0, 1024.0, 748.0);

}

else if (toInterfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)

{

b=YES;

self.view=mainvv;

self.view.transform = CGAffineTransformIdentity;

self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(180));

self.view.bounds = CGRectMake(0.0, 0.0, 768.0, 1004.0);

}

else if (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)

{

b=NO;

self.view = self.vv;

self.view.transform = CGAffineTransformIdentity;

self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90));

self.view.bounds = CGRectMake(0.0, 0.0, 1024.0, 748.0);

}

}

3

Quartz转换实现的原理:Quartz把绘图分成两个部分,

用户空间,即和设备无关,

设备空间,

用户空间和设备空间中间存在一个转换矩阵 : CTM

本章实质是讲解CTM

Quartz提供的3大功能

移动,旋转,缩放

演示如下,首先加载一张图片

void CGContextDrawImage (

CGContextRef c,

CGRect rect,

CGImageRef image

);

移动函数

CGContextTranslateCTM (myContext, 100, 50);

旋转函数

include <math.h>

static inline double radians (double degrees) {return degrees * M_PI/180;}

CGContextRotateCTM (myContext, radians(–45.));

缩放

CGContextScaleCTM (myContext, .5, .75);

翻转, 两种转换合成后的效果,先把图片移动到右上角,然后旋转180度

CGContextTranslateCTM (myContext, w,h);

CGContextRotateCTM (myContext, radians(-180.));

组合几个动作

CGContextTranslateCTM (myContext, w/4, 0);

CGContextScaleCTM (myContext, .25,  .5);

CGContextRotateCTM (myContext, radians ( 22.));

CGContextRotateCTM (myContext, radians ( 22.));

CGContextScaleCTM (myContext, .25,  .5);

CGContextTranslateCTM (myContext, w/4, 0);

上面是通过直接修改当前的ctm实现3大效果,下面是通过创建Affine Transforms,然后连接ctm实现同样的3种效果

这样做的好处是可以重用这个Affine Transforms

应用Affine Transforms 到ctm的函数

void CGContextConcatCTM (

CGContextRef c,

CGAffineTransform transform

);

Creating Affine Transforms

移动效果

CGAffineTransform CGAffineTransformMakeTranslation (

CGFloat tx,

CGFloat ty

);

CGAffineTransform CGAffineTransformTranslate (

CGAffineTransform t,

CGFloat tx,

CGFloat ty

);

旋转效果

CGAffineTransform CGAffineTransformMakeRotation (

CGFloat angle

);

CGAffineTransform CGAffineTransformRotate (

CGAffineTransform t,

CGFloat angle

);

缩放效果

CGAffineTransform CGAffineTransformMakeScale (

CGFloat sx,

CGFloat sy

);

CGAffineTransform CGAffineTransformScale (

CGAffineTransform t,

CGFloat sx,

CGFloat sy

);

反转效果

CGAffineTransform CGAffineTransformInvert (

CGAffineTransform t

);

只对局部产生效果

CGRect CGRectApplyAffineTransform (

CGRect rect,

CGAffineTransform t

);

判断两个AffineTrans是否相等

bool CGAffineTransformEqualToTransform (

CGAffineTransform t1,

CGAffineTransform t2

);

获得Affine Transform

CGAffineTransform CGContextGetUserSpaceToDeviceSpaceTransform (

CGContextRef c

);

下面的函数只起到查看的效果,比如看一下这个用户空间的点,转换到设备空间去坐标是多少

CGPoint CGContextConvertPointToDeviceSpace (

CGContextRef c,

CGPoint point

);

CGPoint CGContextConvertPointToUserSpace (

CGContextRef c,

CGPoint point

);

CGSize CGContextConvertSizeToDeviceSpace (

CGContextRef c,

CGSize size

);

CGSize CGContextConvertSizeToUserSpace (

CGContextRef c,

CGSize size

);

CGRect CGContextConvertRectToDeviceSpace (

CGContextRef c,

CGRect rect

);

CGRect CGContextConvertRectToUserSpace (

CGContextRef c,

CGRect rect

);

CTM真正的数学行为

这个转换矩阵其实是一个 3x3的 举证

如下图

下面举例说明几个转换运算的数学实现

x y 是原先点的坐标

下面是从用户坐标转换到设备坐标的计算公式

下面是一个identity matrix,就是输入什么坐标,出来什么坐标,没有转换

最终的计算结果是 x=x,y=y,

可以用函数判断这个矩阵是不是一个 identity matrix

bool CGAffineTransformIsIdentity (

CGAffineTransform t

);

CGAffineTransformMakeRotation(180 / 180.0 * M_PI );//180移动。上下互换。

移动矩阵

缩放矩阵

旋转矩阵

旋转加移动矩阵

http://www.cnblogs.com/pengyingh/articles/2378732.html

IOSView翻转扭矩位移的更多相关文章

  1. iOS Transform坐标变化

    在使用CGContext时,由于Quartz 2D与UIKit坐标不一致,所以需要对context进行再一次的变化,达到预期的效果. 1. 不同坐标原点介绍 在Quartz 2D中,坐标原点在画布的左 ...

  2. css3Transitions 实现的鼠标经过图标位移、旋转、翻转、发光、淡入淡出等多种特效

    HTML如下:   1 <div class="container"> 3 <!--特效1 --> <section id="set-1&q ...

  3. python自学笔记(六)二进制与位移

    一.二进制 a = 1 bin(a)-->ob1  #python内置方法 ob 表示二进整型制格式 二.难缠符号 1.位移二进制的位 >> 右位移,想象成 切肉切去最后一位 例如 ...

  4. 正经学C#_位移与其位移运算符[c#入门经典]

    在c#入门经典一书中,最为糟糕的一节就是位移了,完全没有讲明白,也没有说全,似乎只是轻轻点了一下何为位移,带了两次原码和补码,完全不理会是否明白不明白.这一点这本书很差.因为此书说了,在大多数应用开发 ...

  5. 纯CSS 3D翻转一个面(翻转导航菜单 立方体)

    在做练习的时候学到css的翻转导航菜单,原代码有点让人头疼,通过对其css的参数一点点研究了其实现过程. 这里推荐大家研究这个3D翻转动画的代码. 我的github:swarz,欢迎给老弟我++星星 ...

  6. 原生js如何实现图片翻转旋转效果?

    原生js如何实现图片翻转旋转效果? 一.总结 1.通过给元素设置style中的transition来实现的. 2.我昨天纠结的效果全部可以通过精读这个代码后实现. 二.原生js如何实现图片翻转旋转效果 ...

  7. [LeetCode] Reverse Vowels of a String 翻转字符串中的元音字母

    Write a function that takes a string as input and reverse only the vowels of a string. Example 1:Giv ...

  8. [LeetCode] Reverse String 翻转字符串

    Write a function that takes a string as input and returns the string reversed. Example: Given s = &q ...

  9. [LeetCode] Flip Game 翻转游戏

    You are playing the following Flip Game with your friend: Given a string that contains only these tw ...

随机推荐

  1. 每天一个java基础知识--static

    内存总体一共分为了 4个部分(stack segment.heap segment.code segment.data segment) 当我们在程序中,申明一个局部变量的时候,此变量就存放在了 st ...

  2. linux第6天 流协议-粘包

    今天学习的主要是对第5天的加强. 比如服务器的多进程,点对点应用聊天程序.父进程子进程互发消息.等等. 流协议-粘包 一般TCP协议会出现粘包,粘包产生的原因一般为.TCP协议是流式传输,不会根据用户 ...

  3. paper 85:机器统计学习方法——CART, Bagging, Random Forest, Boosting

    本文从统计学角度讲解了CART(Classification And Regression Tree), Bagging(bootstrap aggregation), Random Forest B ...

  4. 夺命雷公狗---DEDECMS----9dedecms单标签

    我们这一节课开始将dedecms的标签了,dedecms里面的标签分好多个的,我们先来看下他的标签长得啥样的先: 随便点击一个修改即可见到标签了: 这里面上面的大文本框里面有标签的用法下面有参数的说明 ...

  5. STM

    STM(System Trace macrocell) STM是coresight system中的一个trace source,可以提供high-bandwidth的trace data. STM优 ...

  6. [php] How to debug PHP in the terminal

    Here I use Netbeans, xdebug to debug the PHP in the terminal of Ubuntu. 1. you have to install the x ...

  7. 【linux】终端直接执行py文件,不需要python命令

    先将终端所在路径切换到python脚本文件的目录下然后给脚本文件运行权限,一般755就OK,如果完全是自己的私人电脑,也不做服务器什么的,给777的权限问题也不大(具体权限含义参考chmod指令的介绍 ...

  8. Hadoop之TaskInputOutputContext类

    在MapReduce过程中,每一个Job都会被分成若干个task,然后再进行处理.那么Hadoop是怎么将Job分成若干个task,并对其进行跟踪处理的呢?今天我们来看一个*Context类——Tas ...

  9. NOIP201302表达式求值

    NOIP201302表达式求值 题目描述 Description 给定一个只包含加法和乘法的算术表达式,请你编程计算表达式的值. 输入描述 Input Description 输入仅有一行,为需要你计 ...

  10. string与char之间的互相转换

    string对象是一种很强大的存在哈~~ 1. string转const char* string s = "abc"; const char* c_s = s.c_str(); ...