vote up 2 vote down star

There is a function like:

CATransform3DGetAffineTransform

Returns the affine transform represented by 't'. If 't' can not be exactly represented as an affine transform the returned value is undefined.

I'm not so math-orientated, so a easy to understand description would be very nice. Wikipedia was no big help here.

flag

58% accept rate
This is similar to this question: stackoverflow.com/questions/567829/… – Brad Larson May 19 at 17:56

2 Answers

vote up 5 vote down

Affine transformations are transformations that do not "overly distort" your geometry in the sense that:

  • points that lay on a line before still lie on a line after the transformation
  • the relative distances between points stay the same (so a square might not be square anymore, but still has equal side lengths)

So rotation and scaling are affine - projection, for example, is not.

link|flag
vote up 1 vote down

CoreAnimation uses 3D transforms. Affine transforms are a 2D subset of those 3D transforms. They allow only translation, rotation and scaling in X,Y plan.

link|flag
1  
That is not true - affine transformations are transformations that preserve collinearity and ratio of distances. Translation, rotation, scaling, and more are affine in three dimensions, too. – Daniel Brückner May 19 at 13:18
I should have precised that the scope of my answer was Cocoa and NSAffineTransform. – mouviciel May 19 at 13:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.