mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-24 04:29:44 +00:00
13 lines
205 B
Objective-C
13 lines
205 B
Objective-C
#import <Foundation/NSAffineTransform.h>
|
|
|
|
@class NSBezierPath;
|
|
|
|
@interface NSAffineTransform (AppKit)
|
|
|
|
- (void)concat;
|
|
- (void)set;
|
|
|
|
- (NSBezierPath *)transformBezierPath:(NSBezierPath *)bezierPath;
|
|
|
|
@end
|