Changeset 4872

Show
Ignore:
Timestamp:
08/22/07 16:50:42 (1 year ago)
Author:
morris
Message:

Reverse rotation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Footagehead/trunk/English.lproj/ReleaseNotes.rtf

    r4869 r4872  
    215215- Add support for saving all images in the list to a local folder\ 
    216216- Update the status bar after deleting a file to reflect correct count\ 
     217- Reverse rotate right/left so they do what they're called\ 
    217218 
    218219\f0\b \cf2 \ 
  • Footagehead/trunk/FHImage.m

    r4735 r4872  
    285285 
    286286                        CGContextTranslateCTM(cgContext, cgPoint.x, cgPoint.y); 
    287                         CGContextRotateCTM(cgContext, angle * M_PI / 180.0f); 
     287                        CGContextRotateCTM(cgContext, -angle * M_PI / 180.0f); 
    288288                        CGContextTranslateCTM(cgContext, -cgPoint.x, -cgPoint.y); 
    289289                }