I would like to sum up multiple posts because nothing is really clear.
myCgRect.applying( CGAffineTransform(A).scaledBy(B) )does first B and then A ?CGAffineTransform(A).concatenating(CGAffineTransform(B))does first B then A ?CGAffineTransform(A).scaledBy(...)first scales(B) then A ?CGAffineTransform(A).translatedBy(...)first translates(B) then A ?
Is everything correct?
Thank you in advance :D