Comment on "
Proportional Scaling with NSImage
"
by John C. Randolph — Sep 30
To save yourself a function call, change:
NSPoint thumbnailPoint = NSMakePoint(0,0);
to:
NSPoint thumbnailPoint = NSZeroPoint;
-jcr
Back to "
Proportional Scaling with NSImage
"
Copyright © Scott Stevenson 2004-2015
by John C. Randolph — Sep 30
NSPoint thumbnailPoint = NSMakePoint(0,0);
to:
NSPoint thumbnailPoint = NSZeroPoint;
-jcr