Quincey Morris wrote:

On Apr 2, 2008, at 04:00, Ghufran Ahamad wrote:

[xform translateXBy:center.x yBy:center.y];
[xform rotateByDegrees:[curGraphic GetAngle]];
[xform translateXBy:-center.x yBy:-center.y];
This looks kind of wrong. Mathematically, wouldn't you want:

        [xform translateXBy:-center.x yBy:-center.y];
        [xform rotateByDegrees:[curGraphic GetAngle]];
        [xform translateXBy:center.x yBy:center.y];

?

Nope. The way the matrix multiplication works, the effect is that the transformations take place in the opposite order of the way they appeared in code.
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to