ios - Apply a perspective transform without rotating -


i have been trying perform perspective transform on uiview. have been working example.

however, example applies rotation on view perspective change. there way change perspective of view no rotation? might this:

enter image description here

i have been trying remove rotation, when perspective transform not applied. can't find examples out there deal changing perspective. in advance.

just adding david's answer: output in image have rotate view around x-axis (the horizontal axis) upper edge of view rectangle appears "further away" viewer lower edge, e.g.

catransform3d rotationandperspectivetransform = catransform3didentity; rotationandperspectivetransform.m34 = 1.0 / -200; rotationandperspectivetransform = catransform3drotate(rotationandperspectivetransform, 45.0f * m_pi / 180.0f, 1.0f, 0.0f, 0.0f); layer.transform = rotationandperspectivetransform; 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -